Method SetItemMinSize
SetItemMinSize(Control, int, int)
Set an item's minimum size by its control.
bool SetItemMinSize(Control control, int width, int height)
Parameters
Returns
- bool
true
if operation is successful;false
otherwise.
Remarks
This function enables an application to set the size of an item after initial creation. The control will be found recursively in the sizer's descendants.
SetItemMinSize(ISizer, int, int)
Set an item's minimum size by its sizer.
bool SetItemMinSize(ISizer sizer, int width, int height)
Parameters
Returns
- bool
true
if operation is successful;false
otherwise.
Remarks
This function enables an application to set the size of an item after initial creation. The subsizer will be found recursively in the sizer's descendants.
SetItemMinSize(int, int, int)
Set an item's minimum size by its index.
bool SetItemMinSize(int index, int width, int height)
Parameters
Returns
- bool
true
if operation is successful;false
otherwise.