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.
2186 |
# File 'sig/types.rbs', line 2186
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.
2183 2184 2185 |
# File 'sig/types.rbs', line 2183 def height @height end |
#is_encrypted ⇒ Boolean?
Returns the value of attribute is_encrypted.
2181 2182 2183 |
# File 'sig/types.rbs', line 2181 def is_encrypted @is_encrypted end |
#page_count ⇒ Integer?
Returns the value of attribute page_count.
2184 2185 2186 |
# File 'sig/types.rbs', line 2184 def page_count @page_count end |
#pdf_version ⇒ String?
Returns the value of attribute pdf_version.
2179 2180 2181 |
# File 'sig/types.rbs', line 2179 def pdf_version @pdf_version end |
#producer ⇒ String?
Returns the value of attribute producer.
2180 2181 2182 |
# File 'sig/types.rbs', line 2180 def producer @producer end |
#width ⇒ Integer?
Returns the value of attribute width.
2182 2183 2184 |
# File 'sig/types.rbs', line 2182 def width @width end |