Class LogicalElementCollection
Represents the LogicalElementCollection class.
Inheritance
System.Object
LogicalElementCollection
Namespace: Syncfusion.UI.Xaml.Controls.Layout
Assembly: Syncfusion.SfDockingManager.UWP.dll
Syntax
[ClassReference(IsReviewed = false)]
public class LogicalElementCollection : ObservableCollection<UIElement>
Constructors
LogicalElementCollection(SfDockingManager)
Initializes a new instance of the LogicalElementCollection class.
Declaration
[ClassReference(IsReviewed = false)]
public LogicalElementCollection(SfDockingManager myCanvas)
Parameters
Type | Name | Description |
---|---|---|
SfDockingManager | myCanvas | My canvas. |
Methods
ClearItems()
Removes all items from the collection.
Declaration
protected override void ClearItems()
InsertItem(Int32, UIElement)
Inserts an item into the collection at the specified index.
Declaration
protected override void InsertItem(int index, UIElement item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index at which |
Windows.UI.Xaml.UIElement | item | The object to insert. |
RemoveItem(Int32)
Removes the item at the specified index of the collection.
Declaration
protected override void RemoveItem(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the element to remove. |
SetItem(Int32, UIElement)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, UIElement item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the element to replace. |
Windows.UI.Xaml.UIElement | item | The new value for the element at the specified index. |