|
|
|
SftDirectory.Selection Property |
Returns the requested selected file/folder.
Syntax
VB.NET |
refFolderObj = object.get_Selection(ByVal SelectionIndex As Integer) As SftDirectoryFolder |
||
VB |
Set refFolderObj = object.Selection(ByVal SelectionIndex As Integer) As SftDirectoryFolder |
||
C#.NET |
SftDirectoryFolder refFolderObj = object.get_Selection(int SelectionIndex); |
||
VC++ |
ISftDirectoryFolder* refFolderObj = object->Selection[int SelectionIndex];
|
||
C |
HRESULT object->get_Selection(int SelectionIndex, ISftDirectoryFolder** refFolderObj); |
||
Delphi |
refFolderObj := object.Selection[SelectionIndex : Integer] : ISftDirectoryFolder; |
object
A SftDirectory object.
SelectionIndex
The zero-based index of the selection to be returned.
refFolderObj
Returns the requested selected file/folder.
Comments
The Selection property returns the requested selected file/folder.
The SelectionCount property contains the number of currently selected files/folders. The selected files/folders can be retrieved using the Selection property.
The MultiSelect property defines whether only one or multiple files/folders can be selected at a time. Combo box style controls (see ControlStyle property) support single selection only.
All selections can be cleared using the ClearSelection property.