Copyright © 1998-2006 MultiMedia Soft 
Return to index  
 
CellsManager.GetCellSize method 
 
Remarks 
Retrieves the current size for the cell identified by a UniqueID identifier. 
For further details about cells management, see the How to manage cells section 
 
Syntax 
Visual Basic 
control.CellsManager.GetCellSize (UniqueID as integer, pPercWidth as integer, pPercHeight as integer) as boolean 
 
Visual C++ 
BOOL control.CellsManager.GetCellSize (short UniqueID, short *pPercWidth, short *pPercHeight); 
 
Parameter
Description
 
 
UniqueID
Numerical value representing the cell's unique identifier: a control cannot have two cells with the same UniqueID
pPercWidth
Pointer to a variable that will receive, on exit, the cell's width expressed in percentage of the container control's width
pPercHeight
Pointer to a variable that will receive, on exit, the cell's height expressed in percentage of the container control's height
 
 
Return value 
 
Value
Meaning
 
 
FALSE
The operation failed
TRUE
The operation was successful
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 1998-2006 MultiMedia Soft 
Return to index