menu

UWP

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

    Show / Hide Table of Contents

    Class BreakAdv

    Represents the BreakAdv class.

    Inheritance
    System.Object
    BaseNode
    Node
    Inline
    BreakAdv
    Implements
    INode
    Inherited Members
    Inline.CharacterFormat
    Inline.CharacterFormatProperty
    Inline.OnTextChanged()
    Node.NextNode
    Node.Owner
    Node.PreviousNode
    Namespace: Syncfusion.UI.Xaml.RichTextBoxAdv
    Assembly: Syncfusion.SfRichTextBoxAdv.UWP.dll
    Syntax
    public class BreakAdv : Inline, INode
    Examples

    The following code example demonstrates how to add a break.

    <RichTextBoxAdv:ParagraphAdv>
        <!-- Add the line break. --> 
        <RichTextBoxAdv:BreakAdv Type="LineBreak"></RichTextBoxAdv:BreakAdv>
        <!-- You can add any number of spans, images, comments and hyperlink fields here. --> 
    </RichTextBoxAdv:ParagraphAdv>
    ParagraphAdv paragraph = new ParagraphAdv();
    

    // Add the line break. BreakAdv breakAdv = new BreakAdv(); breakAdv.Type = BreakType.LineBreak; paragraph.Inlines.Add(breakAdv);

    // You can add any number of spans, images, comments and hyperlink fields here.

    Dim paragraph As New ParagraphAdv()
    
    ' Add the line break.
    Dim breakAdv As New BreakAdv()
    breakAdv.Type = BreakType.LineBreak
    paragraph.Inlines.Add(breakAdv)
    
    ' You can add any number of spans, images, comments and hyperlink fields here.

    Constructors

    BreakAdv()

    Initializes a new instance of the BreakAdv class.

    Declaration
    public BreakAdv()

    Properties

    Type

    Gets or sets the break type.

    Declaration
    public BreakType Type { get; set; }
    Property Value
    Type
    BreakType

    Implements

    INode

    Extension Methods

    DateTimeExtension.ToDateTime(Object)
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved