Class: Xberg::PdfMetadata
- Inherits:
-
Object
- Object
- Xberg::PdfMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#height ⇒ Integer?
Returns the value of attribute height.
-
#is_encrypted ⇒ Boolean?
Returns the value of attribute is_encrypted.
-
#page_count ⇒ Integer?
Returns the value of attribute page_count.
-
#pdf_version ⇒ String?
Returns the value of attribute pdf_version.
-
#producer ⇒ String?
Returns the value of attribute producer.
-
#width ⇒ Integer?
Returns the value of attribute width.
Instance Method Summary collapse
-
#initialize ⇒ PdfMetadata
constructor
A new instance of PdfMetadata.
Constructor Details
#initialize ⇒ PdfMetadata
Returns a new instance of PdfMetadata.
2093 |
# File 'sig/types.rbs', line 2093
def initialize: (?pdf_version: String, ?producer: String, ?is_encrypted: bool, ?width: Integer, ?height: Integer, ?page_count: Integer) -> void
|
Instance Attribute Details
#height ⇒ Integer?
Returns the value of attribute height.
2090 2091 2092 |
# File 'sig/types.rbs', line 2090 def height @height end |
#is_encrypted ⇒ Boolean?
Returns the value of attribute is_encrypted.
2088 2089 2090 |
# File 'sig/types.rbs', line 2088 def is_encrypted @is_encrypted end |
#page_count ⇒ Integer?
Returns the value of attribute page_count.
2091 2092 2093 |
# File 'sig/types.rbs', line 2091 def page_count @page_count end |
#pdf_version ⇒ String?
Returns the value of attribute pdf_version.
2086 2087 2088 |
# File 'sig/types.rbs', line 2086 def pdf_version @pdf_version end |
#producer ⇒ String?
Returns the value of attribute producer.
2087 2088 2089 |
# File 'sig/types.rbs', line 2087 def producer @producer end |
#width ⇒ Integer?
Returns the value of attribute width.
2089 2090 2091 |
# File 'sig/types.rbs', line 2089 def width @width end |