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