CRect:Width


The Width method returns the x dimension, or "width" of the CRect object. The Size method returns both the width and height.

Syntax

nWidth = CRect:Width()

bullet.gif    nWidth is a number and may be positive or negative.

Example

The following script prints the width of the CRect:

R = new_rect()

-- create a CRect object

R:Set(100,250,-400,-1200)

 

Printf( "Width= %.2lf\n", R:Width())

-- result: Width = 150.00

Related Topics

CRect class, Size, Height

 


Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics, Inc. All Rights Reserved.