Blazor | ComponentOne
C1.Blazor.Core Assembly / C1.Blazor.Core Namespace / C1StyleWhiteSpace Enumeration

In This Topic
    C1StyleWhiteSpace Enumeration
    In This Topic
    The white-space property specifies how white-space inside an element is handled.
    Syntax
    'Declaration
     
    
    Public Enum C1StyleWhiteSpace 
       Inherits System.Enum
    public enum C1StyleWhiteSpace : System.Enum 
    Members
    MemberDescription
    NormalSequences of whitespace will collapse into a single whitespace. Text will wrap when necessary.
    NoWrapSequences of whitespace will collapse into a single whitespace. Text will never wrap to the next line. The text continues on the same line until a <br> tag is encountered
    PreWhitespace is preserved by the browser. Text will only wrap on line breaks. Acts like the <pre> tag in HTML.
    PreLineSequences of whitespace will collapse into a single whitespace. Text will wrap when necessary, and on line breaks.
    PreWrapWhitespace is preserved by the browser. Text will wrap when necessary, and on line breaks.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Blazor.Core.C1StyleWhiteSpace

    See Also