OWLNext 7.0
Borland's Object Windows Library for the modern age
|
Methods are functions contained in each VBX control that you can use to call into the control and cause an action to take place.
TVbxControl provides compatibility with the following methods contained in Visual Basic 3.0-compatible controls:
Function | Explanation |
TVbxControl::Move(int x, int y, int w, int h) | Moves the control to the coordinates x and y and resizes the control to w pixels wide by h pixels high. |
TVbxControl::Refresh() | Refreshes the control's display area. |
TVbxControl::AddItem(int index, const char far *item) | Adds the item item to the control's list of items and gives the new item the index number index. |
TVbxControl::RemoveItem(int index) | Removes the item with the index number index. |