MadelineProto/old_docs/API_docs_v41/constructors/documentAttributeImageSize.md

662 B

title description
documentAttributeImageSize documentAttributeImageSize attributes, type and example

Constructor: documentAttributeImageSize

Back to constructors index

Attributes:

Name Type Required
w int Yes
h int Yes

Type: DocumentAttribute

Example:

$documentAttributeImageSize = ['_' => 'documentAttributeImageSize', 'w' => int, 'h' => int, ];

Or, if you're into Lua:

documentAttributeImageSize={_='documentAttributeImageSize', w=int, h=int, }