menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class HelpPaneTemplate - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    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
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved