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.
2082 |
# File 'sig/types.rbs', line 2082
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.
2079 2080 2081 |
# File 'sig/types.rbs', line 2079 def height @height end |
#is_encrypted ⇒ Boolean?
Returns the value of attribute is_encrypted.
2077 2078 2079 |
# File 'sig/types.rbs', line 2077 def is_encrypted @is_encrypted end |
#page_count ⇒ Integer?
Returns the value of attribute page_count.
2080 2081 2082 |
# File 'sig/types.rbs', line 2080 def page_count @page_count end |
#pdf_version ⇒ String?
Returns the value of attribute pdf_version.
2075 2076 2077 |
# File 'sig/types.rbs', line 2075 def pdf_version @pdf_version end |
#producer ⇒ String?
Returns the value of attribute producer.
2076 2077 2078 |
# File 'sig/types.rbs', line 2076 def producer @producer end |
#width ⇒ Integer?
Returns the value of attribute width.
2078 2079 2080 |
# File 'sig/types.rbs', line 2078 def width @width end |