void members(multi-type)
Return Type: void
Parameters: mutli-type
Description:
This function displays the member variables and member functions of the
input variable. Note that not all variables have member variables or member
functions.
Example
Code |
1 >>window
w;
2 >>members(w);
<Member Variables>
Name
Type
------------------------------------------------------------------------------
Tag
string
Class
string <Member
Functions>
Name
Return Parameters
------------------------------------------------------------------------------
AddChild
void window,string
Blink
void int
BringToTop
void
CaptureBitmap
bitmap
...
...
...
|