Interface IAnnotationToolbarItem

Interface that represents items in annotation toolbar.

Namespace: PSPDFKit.Api.Toolbar
Assembly: Api.dll
Syntax
public interface IAnnotationToolbarItem : INotifyPropertyChanged

Properties

| Edit this page View Source

Icon

Gets or sets path of the icon for the toolbar item. Icon should be an SVG image stored as raw asset in the app, i.e. it should be present in the Resources/Raw/Assets folder in the project.

Declaration
string Icon { get; set; }
Property Value
Type Description
string
| Edit this page View Source

IsDisabled

Gets or sets if the item is disabled.

Declaration
bool? IsDisabled { get; set; }
Property Value
Type Description
bool?
| Edit this page View Source

StyleClass

Gets or sets the custom style class name use for the toolbar item.

Declaration
string StyleClass { get; set; }
Property Value
Type Description
string
| Edit this page View Source

Tooltip

Gets or sets the tool tip for the item.

Declaration
string Tooltip { get; set; }
Property Value
Type Description
string