CRect:Width
The Width method returns the x dimension, or "width" of the CRect object. The Size method returns both the width and height.
nWidth = CRect:Width()
|
The following script fragment prints the width of the CRect:
|
-- create a CRect object |
|
|
|
-- result: Width = 150.00 |