Interface IContainerItem
Represents interface for container node.
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public interface IContainerItem
Properties
Items
Gets the items.
Declaration
IEnumerable Items { get; }
Property Value
System.Collections.IEnumerable
|
Methods
AddItem(Object)
Adds the item to its children.
Declaration
bool AddItem(object item)
Parameters
System.Object
item
|
Returns
System.Boolean
|
RemoveItem(Object)
Removes the item from its children.
Declaration
bool RemoveItem(object item)
Parameters
System.Object
item
|
Returns
System.Boolean
|