int DialogOptionsRenderingInfo.Height;
Gets/sets the height of the area needed to draw the dialog options.
This can only be set within the dialog_options_get_dimensions function, but
can be read in other functions in order to render the options.
Example:
function dialog_options_get_dimensions(DialogOptionsRenderingInfo *info)
{
info.Width = 300;
info.Height = 150;
}
creates a 300x150 size area to draw the dialog options in
Compatibility: Supported by AGS 3.1.0 and later versions.
See Also: DialogOptionsRenderingInfo.Width
|