Copyright © 2003-2005 MultiMedia Soft 
Return to index  
 
CellsManager.SetCellPos method 
 
Remarks 
Modifies 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] 
Public Function CellsManager.SetCellPos(UniqueID as Short, position as System.Drawing.Point) as Bool 
 
[C#] 
public bool CellsManager.GetCellPos(short UniqueID, System.Drawing.Point position); 
 
[C++] 
public: bool CellsManager.GetCellPos(short UniqueID, System.Drawing.Point position); 
 
Parameter
Description
 
 
UniqueID
Numerical value representing the cell's unique identifier.
position
Point structure whose X field represents the new cell's left position expressed in percentage of the container control's width while the Y field represents the new 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 © 2003-2005 MultiMedia Soft 
Return to index