Class RadImageEditorToolbar
Provides a customizable toolbar for the RadImageEditor component. The toolbar exposes all actions supported by the image editor via highly customizable toolbar items. The toolbar items can be styled, arranged and grouped together in different configurations to better suit the needs of the application.
Inherited Members
Namespace: Telerik.XamarinForms.ImageEditor
Assembly: Telerik.XamarinForms.ImageEditor.dll
Syntax
public class RadImageEditorToolbar : RadLayout<View>
Constructors
RadImageEditorToolbar()
Initializes a new instance of the RadImageEditorToolbar class.
Declaration
public RadImageEditorToolbar()
Fields
AutoGenerateItemsProperty
Identifies the AutoGenerateItems property.
Declaration
public static readonly BindableProperty AutoGenerateItemsProperty
Field Value
Xamarin.Forms.BindableProperty
|
ImageEditorProperty
Identifies the ImageEditor property.
Declaration
public static readonly BindableProperty ImageEditorProperty
Field Value
Xamarin.Forms.BindableProperty
|
IsMultiLineProperty
Identifies the IsMultiLine property.
Declaration
public static readonly BindableProperty IsMultiLineProperty
Field Value
Xamarin.Forms.BindableProperty
|
ItemSpacingProperty
Identifies the ItemSpacing property.
Declaration
public static readonly BindableProperty ItemSpacingProperty
Field Value
Xamarin.Forms.BindableProperty
|
OverflowButtonFontFamilyProperty
Identifies the OverflowButtonFontFamily property.
Declaration
public static readonly BindableProperty OverflowButtonFontFamilyProperty
Field Value
Xamarin.Forms.BindableProperty
|
OverflowButtonTemplateProperty
Identifies the OverflowButtonTemplate property.
Declaration
public static readonly BindableProperty OverflowButtonTemplateProperty
Field Value
Xamarin.Forms.BindableProperty
|
OverflowButtonTextColorProperty
Identifies the OverflowButtonTextColor property.
Declaration
public static readonly BindableProperty OverflowButtonTextColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
OverflowButtonTextProperty
Identifies the OverflowButtonText property.
Declaration
public static readonly BindableProperty OverflowButtonTextProperty
Field Value
Xamarin.Forms.BindableProperty
|
Properties
AutoGenerateItems
Gets or sets a value indicating whether to auto-generate all items of the toolbar by default.
Declaration
public bool AutoGenerateItems { get; set; }
Property Value
System.Boolean
|
ImageEditor
Gets or sets the RadImageEditor control this toolbar is attached to.
Declaration
public RadImageEditor ImageEditor { get; set; }
Property Value
RadImageEditor
|
IsMultiLine
Gets or sets a value indicating whether the display nested levels of toolbar items on multiple lines. When set to true, nested levels of toolbar items are displayed on separate lines in the toolbar. When set to false, nested levels of toolbar items are displayed on a single line in the toolbar, whith the option to navigate back and forward between the different levels.
Declaration
public bool IsMultiLine { get; set; }
Property Value
System.Boolean
|
Items
Gets a collection of items to display in the toolbar. When AutoGenerateItems is set to true, the toolbar items specified with this property are appended after the auto-generated ones.
Declaration
public IList<ImageEditorToolbarItem> Items { get; }
Property Value
System.Collections.Generic.IList<ImageEditorToolbarItem>
|
ItemSpacing
Gets or sets the extra spacing between the items of the toolbar.
Declaration
public double ItemSpacing { get; set; }
Property Value
System.Double
|
OverflowButtonFontFamily
Gets or sets the font family of the overflow button. The overflow button is displayed when not all toolbar items can fit the available space.
Declaration
public string OverflowButtonFontFamily { get; set; }
Property Value
System.String
|
OverflowButtonTemplate
Gets or sets a Xamarin.Forms.DataTemplate for the overflow button. The overflow button is displayed when not all toolbar items can fit the available space.
Declaration
public DataTemplate OverflowButtonTemplate { get; set; }
Property Value
Xamarin.Forms.DataTemplate
|
OverflowButtonText
Gets or sets the text of the overflow button. The overflow button is displayed when not all toolbar items can fit the available space.
Declaration
public string OverflowButtonText { get; set; }
Property Value
System.String
|
OverflowButtonTextColor
Gets or sets the text color of the overflow button. The overflow button is displayed when not all toolbar items can fit the available space.
Declaration
public Color OverflowButtonTextColor { get; set; }
Property Value
Xamarin.Forms.Color
|
Methods
OnParentSet()
Declaration
protected override void OnParentSet()