Xceed Toolkit Plus for WPF v5.0 Documentation
Xceed.Wpf.Toolkit Assembly / Xceed.Wpf.Toolkit Namespace / IRichTextBoxFormatBar Interface
Members Example


    IRichTextBoxFormatBar Interface
    Provides an interface for creating rich-text format bars.
    Syntax
    'Declaration
     
    Public Interface IRichTextBoxFormatBar 
     
    'Usage
     
    Dim instance As IRichTextBoxFormatBar
    Remarks

    Create a control that implements this interface to create custom format bars and set the RichTextBoxFormatBarManager.FormatBar attached property to your new custom format bar instance.

    Example
    You create your own custom format bar by creating a custom/user control that implements the IRichTextBoxFormatBar interface and setting the RichTextBoxFormatBarManager.FormatBar attached property to your new custom format bar instance.
    <RichTextBox>
           <xctk:RichTextBoxFormatBarManager.FormatBar>
               <local:MyCustomFormatBar />
           </xctk:RichTextBoxFormatBarManager.FormatBar>
    </RichTextBox>
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also