menu

Xamarin.Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class FooterToolbarItem - API Reference

    Show / Hide Table of Contents

    Class FooterToolbarItem

    Represents FooterToolbarItem class.

    Inheritance
    System.Object
    ToolbarItem
    FooterToolbarItem
    Inherited Members
    ToolbarItem.TextProperty
    ToolbarItem.IconProperty
    ToolbarItem.IconHeightProperty
    ToolbarItem.TextHeightProperty
    ToolbarItem.NameProperty
    ToolbarItem.Text
    ToolbarItem.Icon
    ToolbarItem.IconHeight
    ToolbarItem.TextHeight
    ToolbarItem.Name
    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" });
    }
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved