Interface
IGroup

Represents a (non-visual) diagramming group.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

cs-api-definition
public interface IGroup : IGroupable

Inherited Members IGroupable.ParentGroupIGroupable.ParentGroupChanged

Properties

IsSelected

Gets or sets a value indicating whether this group is selected.

Declaration

cs-api-definition
bool IsSelected { get; set; }

Property Value

bool

Items

Gets the items contained within this group.

Declaration

cs-api-definition
IList<IGroupable> Items { get; }

Property Value

IList<IGroupable>

Name

Gets the name of this group.

Declaration

cs-api-definition
string Name { get; }

Property Value

string

Events

ItemsChanged

Occurs when the collection of items this group contains has changed.

Declaration

cs-api-definition
event NotifyCollectionChangedEventHandler ItemsChanged

Event Value

NotifyCollectionChangedEventHandler

SelectionChanged

Occurs when the selected item within this group has changed.

Declaration

cs-api-definition
event EventHandler SelectionChanged

Event Value

EventHandler

Extension Methods