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
control.CellsManager.CellSetPos (UniqueID as integer, fPosLeft as single, fPosTop as single) as boolean
Visual C++
BOOL control.CellsManager.CellSetPos (short UniqueID, float fPosLeft, float fPosTop);
Parameter
|
Description
|
|
|
UniqueID
|
Numerical value representing the cell's unique identifier: a control cannot have two cells with the same UniqueID
|
fPosLeft
|
Numerical value representing the new cell's left position expressed in the scale unit specified inside the CellsManager.ScaleUnit property
|
fPosTop
|
Numerical value representing the new cell's top position expressed in the scale unit specified inside the CellsManager.ScaleUnit property
|
Return value
Value
|
Meaning
|
|
|
FALSE
|
The operation failed
|
TRUE
|
The operation was successful
|
|