DlgBillboard.SetSize

DlgBillboard.SetSize ( 

number ControlID,

number Width,

number Height )

Example 1

DlgBillboard.SetSize(CTRL_BILLBOARD_01, 400, 350);

Sets the CTRL_BILLBOARD_01 billboard control's width to 400 pixels and it's height to 350 pixels.

Example 2

DlgBillboard.SetSize(CTRL_BILLBOARD_02, DlgBillboard.GetSize(CTRL_BILLBOARD_02).Width + 200, DlgBillboard.GetSize(CTRL_BILLBOARD_02).Height + 100);

Increases the CTRL_BILLBOARD_02 billboard control's current width by 200 pixels and it's current height by 100 pixels. The DlgBillboard.GetSize action is used here to get the current size of the billboard control.

See also:  Related Actions