Class ImageEditorToolbarItem
Represents the ImageEditorToolbarItem class.
Inheritance
Implements
Namespace: Syncfusion.Maui.ImageEditor
Assembly: Syncfusion.Maui.ImageEditor.dll
Syntax
public class ImageEditorToolbarItem : BindableObject, IImageEditorToolbarItem
Constructors
ImageEditorToolbarItem()
Declaration
public ImageEditorToolbarItem()
Fields
IsEnabledProperty
Identifies the IsEnabled dependency property.
Declaration
public static readonly BindableProperty IsEnabledProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for IsEnabled dependency property. |
IsVisibleProperty
Identifies the IsVisible dependency property.
Declaration
public static readonly BindableProperty IsVisibleProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for IsVisible dependency property. |
NameProperty
Identifies the Name dependency property.
Declaration
public static readonly BindableProperty NameProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for Name dependency property. |
ShowTooltipProperty
Identifies the ShowTooltip dependency property.
Declaration
public static readonly BindableProperty ShowTooltipProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for ShowTooltip dependency property. |
SubToolbarOverlayProperty
Identifies the SubToolbarOverlay dependency property.
Declaration
public static readonly BindableProperty SubToolbarOverlayProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for SubToolbarOverlay dependency property. |
SubToolbarsProperty
Identifies the SubToolbars dependency property.
Declaration
public static readonly BindableProperty SubToolbarsProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for SubToolbars dependency property. |
TextProperty
Identifies the Text dependency property.
Declaration
public static readonly BindableProperty TextProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for Text dependency property. |
ViewProperty
Identifies the View dependency property.
Declaration
public static readonly BindableProperty ViewProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for View dependency property. |
Properties
IsEnabled
Gets or sets a value indicating whether the toolbar item is enabled or not.
Declaration
public bool IsEnabled { get; set; }
Property Value
Type |
---|
System.Boolean |
IsVisible
Gets or sets a value indicating whether the toolbar item is visible or not.
Declaration
public bool IsVisible { get; set; }
Property Value
Type |
---|
System.Boolean |
Name
Gets or sets the name of the toolbar item.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |
ShowTooltip
Gets or sets a value indicating whether to show the tooltip for a toolbar item.
Declaration
public bool ShowTooltip { get; set; }
Property Value
Type |
---|
System.Boolean |
SubToolbarOverlay
Gets or sets a value indicating whether sub toolbars should overlay the current toolbar.
Declaration
public bool SubToolbarOverlay { get; set; }
Property Value
Type |
---|
System.Boolean |
SubToolbars
Gets or sets a list of sub toolbars associated with the toolbar item.
Declaration
public List<ImageEditorToolbar> SubToolbars { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<ImageEditorToolbar> |
Text
Gets or sets the text value to toolbar item.
Declaration
public string Text { get; set; }
Property Value
Type |
---|
System.String |
View
Gets or sets the view to be displayed in the toolbar item.
Declaration
public View View { get; set; }
Property Value
Type |
---|
Microsoft.Maui.Controls.View |
Methods
OnBindingContextChanged()
Declaration
protected override void OnBindingContextChanged()