Gets a list with the selected objects.
Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms
SyntaxC#
Copy Code
|
|---|
public IList<InteractiveObject> Objects { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property Objects As IList(Of InteractiveObject) |
A list of selected objects.
RemarksThe list returned by this property should not be modified directly. To select and deselect objects, use the appropriate methods of the Selection class - AddObject, RemoveObject, Toggle and Change.
See Also