ISelectionSelectionMembers Property |
SelectionMembers
Returns a collection of selectionmember objects.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxSOSelectionMembers SelectionMembers { get; }
ReadOnly Property SelectionMembers As SOSelectionMembers
Get
Dim instance As ISelection
Dim value As SOSelectionMembers
value = instance.SelectionMembers
property SOSelectionMembers^ SelectionMembers {
SOSelectionMembers^ get ();
}
Property Value
Type:
SOSelectionMembersSOSelectionMember – a list of SOSelectionMember objects
ExamplesSelectionMembers
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
Dim result
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "The current selection has " & objSO.CurrentSelection.SelectionMembers.Count & " SelectionMembers.", vbInformation + vbOkOnly, "SuperCOM"\
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also