Class HelpPaneTemplate
Gets or sets the template content for the help pane of the SfRibbon.
Inheritance
System.Object
HelpPaneTemplate
Namespace: Syncfusion.Blazor.Ribbon
Assembly: Syncfusion.Blazor.dll
Syntax
public class HelpPaneTemplate : OwningComponentBase
Remarks
The help pane appears on the right side of the ribbon header row. When this property is set, the specified template content will be displayed in the help pane.
Examples
<SfRibbon ID="default">
<HelpPaneTemplate>
<button> Undo </button>
<button> Redo </button>
</HelpPaneTemplate>
<RibbonTabs>
<RibbonTab Header="Home">
<RibbonGroups>
<RibbonGroup HeaderText="Clipboard">
<RibbonCollections>
<RibbonCollection>
<RibbonItems>
<RibbonItem Type=RibbonItemType.Button AllowedSizes="@((RibbonItemSize)RibbonItemSize.Large | RibbonItemSize.Medium)">
<RibbonButtonSettings Content="Copy" IconCss="e-icons e-copy"></RibbonButtonSettings>
</RibbonItem>
</RibbonItems>
</RibbonCollection>
</RibbonCollections>
</RibbonGroup>
</RibbonGroups>
</RibbonTab>
</RibbonTabs>
</SfRibbon>
Constructors
HelpPaneTemplate()
Declaration
public HelpPaneTemplate()
Properties
ChildContent
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment |
Methods
Dispose(Boolean)
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |