SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Moves a column.
VB.NET | object.Move(ByVal FromDisplayColumn As Short, ByVal TargetDisplayColumn As Short) |
VB | object.Move(ByVal FromDisplayColumn As Integer, ByVal TargetDisplayColumn As Integer) |
C#.NET | void object.Move(short FromDisplayColumn, short TargetDisplayColumn); |
VC++ | HRESULT object->Move(short FromDisplayColumn, short TargetDisplayColumn); |
C | HRESULT object->raw_Move(short FromDisplayColumn, short TargetDisplayColumn); |
object
FromDisplayColumn
The zero-based column number to be moved. This is a display column number.
TargetDisplayColumn
The zero-based column number of the position where the column is to be inserted. This is a display column number. If TargetDisplayColumn is -1, the column will be moved to the end and become the last column.
The Move method moves a column.
The Move method moves the entire column, including the column header, all attributes and contents.
While most other methods, events and properties use real column numbers, the Move method requires the use of display column numbers. The Columns.Count property returns the number of columns defined. Some columns may be hidden (Column.Width property is 0), so they are not visible. Even hidden columns can be moved.
See Also SftBoxColumns Object | Object Hierarchy