Class FooterToolbarItem
Represents FooterToolbarItem class.
Inherited Members
Namespace: Syncfusion.SfImageEditor.XForms
Assembly: Syncfusion.SfImageEditor.XForms.dll
Syntax
public class FooterToolbarItem : ToolbarItem
Constructors
FooterToolbarItem()
Initializes a new instance of the FooterToolbarItem class.
Declaration
public FooterToolbarItem()
Properties
SubItems
Gets or sets subItems collection value to footertoolbaritem.
Declaration
public ObservableCollection<ToolbarItem> SubItems { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<ToolbarItem> | This property takes the System.Collections.ObjectModel.ObservableCollection<> as value. |
Examples
This sample shows how to add the SubItems for the FooterToolbarItem.
Public MyPage()
{
SfImageEditor imageEditor = new SfImageEditor();
(imageEditor.ToolbarSettings.ToolbarItems[0] as FooterToolbarItem).SubItems.Add(new HeaderToolbarItem() { Text = "NewHeader" });
}