Interface IGroup
Represents a (non-visual) diagramming group.
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public interface IGroup : IGroupable
Properties
IsSelected
Gets or sets a value indicating whether this group is selected.
Declaration
bool IsSelected { get; set; }
Property Value
System.Boolean
|
Items
Gets the items contained within this group.
Declaration
IList<IGroupable> Items { get; }
Property Value
System.Collections.Generic.IList<IGroupable>
|
Name
Gets the name of this group.
Declaration
string Name { get; }
Property Value
System.String
|
Events
ItemsChanged
Occurs when the collection of items this group contains has changed.
Declaration
event NotifyCollectionChangedEventHandler ItemsChanged
Event Type
System.Collections.Specialized.NotifyCollectionChangedEventHandler
|
SelectionChanged
Occurs when the selected item within this group has changed.
Declaration
event EventHandler SelectionChanged
Event Type
System.EventHandler
|