Class MarkdownStatus
Provides toolbar status data for Markdown mode.
Inherited Members
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class MarkdownStatus
Remarks
This class contains boolean flags to indicate the activation state of Markdown toolbar items.
Constructors
MarkdownStatus()
Declaration
public MarkdownStatus()
Properties
Blockquote
Defines the Blockquote status.
Declaration
[JsonPropertyName("blockquote")]
public bool Blockquote { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
Blockquote status refers to the active state of block quotation styling in Markdown content.
Bold
Defines the Bold status.
Declaration
[JsonPropertyName("bold")]
public bool Bold { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
Bold status signifies whether bold formatting is active in Markdown mode.
Formats
Defines the Formats status.
Declaration
[JsonPropertyName("formats")]
public string? Formats { get; set; }
Property Value
| Type |
|---|
| string |
Remarks
Formats status discusses the types of formatting applied in Markdown mode, such as headers and quotations.
InlineCode
Defines the InlineCode status.
Declaration
[JsonPropertyName("inlinecode")]
public bool InlineCode { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
InlineCode status displays the presence of inline code elements in the content.
Italic
Defines the Italic status.
Declaration
[JsonPropertyName("italic")]
public bool Italic { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
Italic status reveals if italic text formatting is applied in Markdown mode.
LowerCase
Defines the LowerCase status.
Declaration
[JsonPropertyName("lowercase")]
public bool LowerCase { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
LowerCase status references whether text is styled in lowercase within Markdown.
OrderedList
Defines the OrderedList status.
Declaration
[JsonPropertyName("orderedlist")]
public bool OrderedList { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
OrderedList status communicates if ordered lists are active within current Markdown content.
StrikeThrough
Defines the StrikeThrough status.
Declaration
[JsonPropertyName("strikethrough")]
public bool StrikeThrough { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
StrikeThrough status displays whether strike-through formatting is in use.
SubScript
Defines the SubScript status.
Declaration
[JsonPropertyName("subscript")]
public bool SubScript { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
SubScript status details whether subscript formatting is active in Markdown.
SuperScript
Defines the SuperScript status.
Declaration
[JsonPropertyName("superscript")]
public bool SuperScript { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
SuperScript status reflects the superscript formatting state within Markdown.
UnorderedList
Defines the UnorderedList status.
Declaration
[JsonPropertyName("unorderedlist")]
public bool UnorderedList { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
UnorderedList status reflects whether unordered lists are currently used in the Markdown document.
UpperCase
Defines the UpperCase status.
Declaration
[JsonPropertyName("uppercase")]
public bool UpperCase { get; set; }
Property Value
| Type |
|---|
| bool |
Remarks
UpperCase status indicates if text has uppercase styling applied in Markdown.