Displays the HTML contents of the model. If the model is null, nothing is rendered.
Model Type: YetaWF.Modules.ComponentsHTML.Components.MarkdownStringBase
Name | Type | Default | Description |
---|---|---|---|
EmHeight | int | 10 | Defines the height of the markdown component in lines of text. |
[Caption("Contents"), Description("Shows the contents")] [UIHint("Markdown"), ReadOnly] public MarkdownStringBase Contents { get; set; }
Allows entry of markdown text with preview. The model defines various attributes of the component.
Model Type: YetaWF.Modules.ComponentsHTML.Components.MarkdownStringBase
See https://www.markdownguide.org/cheat-sheet/ for information about markdown formatting.
[Category("General"), Caption("Contents"), Description("The text contents")] [UIHint("Markdown"), AdditionalMetadata("EmHeight", 10)] public MarkdownString Contents { get; set; } public class MarkdownString : MarkdownStringBase { [StringLength(0), AdditionalMetadata("EmHeight", 10)] public override string Text { get { return base.Text; } set { base.Text = value; } } [StringLength(0)] public override string HTML { get { return base.HTML; } set { base.HTML = value; } } }
Last Updated 04/24/2022 - (email)
© 2023 - Softel vdm, Inc. - YetaWF.com