Copyright © 1998-2006 MultiMedia Soft 
Return to index  
 
CellsManager.GetCellPos method 
 
Remarks 
Retrieves the current position 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.GetCellPos (UniqueID as integer, pPercLeft as long, pPercTop as long) as boolean 
 
Visual C++ 
BOOL control.CellsManager.GetCellPos (short UniqueID, short *pPercLeft, short *pPercTop); 
 
Parameter
Description
 
 
UniqueID
Numerical value representing the cell's unique identifier: a control cannot have two cells with the same UniqueID
pPercLeft
Pointer to a variable that will receive, on exit, the cell's left position expressed in percentage of the container control's width
pPercTop
Pointer to a variable that will receive, on exit, the cell's top position 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