Interface IAnnotationToolbarItem
Interface that represents items in annotation toolbar.
Inherited Members
Namespace: PSPDFKit.Api.Toolbar
Assembly: Api.dll
Syntax
public interface IAnnotationToolbarItem : INotifyPropertyChanged
Properties
| Edit this page View SourceIcon
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 |
IsDisabled
Gets or sets if the item is disabled.
Declaration
bool? IsDisabled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
StyleClass
Gets or sets the custom style class name use for the toolbar item.
Declaration
string StyleClass { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Tooltip
Gets or sets the tool tip for the item.
Declaration
string Tooltip { get; set; }
Property Value
| Type | Description |
|---|---|
| string |