Class ToolbarCollection
Represents the collection of toolbars in the SPdfViewer.
Namespace: Syncfusion.Maui.PdfViewer
Assembly: Syncfusion.Maui.PdfViewer.dll
Syntax
public class ToolbarCollection : Object
Properties
Count
Gets the number of toolbars in the collection.
Declaration
public int Count { get; }
Property Value
Type |
---|
System.Int32 |
Item[Int32]
Gets the toolbar at the specified index in the collection.
Declaration
public Toolbar this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
Toolbar |
Methods
GetByName(String)
Gets the toolbar that has the specified name from the collection.
Declaration
public Toolbar GetByName(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the toolbar. |
Returns
Type |
---|
Toolbar |