Markdown Text

A Markdown text component is a read-only component that shows a semi-static text with formatting.

Markdown text

Figure 1 - Markdown Text Control

Variations

None

When to use

Use the type Markdown text to introduce semi-static text with formatting.

Limitations

A Markdown text cannot be used in groups, it needs to be used as a top level component.

How to use

Add the markdowntext control as you would any other control. See example code below:

markdowntext {
   visible = [QEstimatedElasticity = 0];
   text = "Calculation result for Optimal Price will be displayed if basic data in Price Elasticity Estimation exists.";
   emphasis Warning = [true];
}

Keywords

None

Properties

Below is a list of properties that can be used to customize the control.

emphasis | text | visible

Example

Below is an example of how markdown text is used.

markdowntext {
   visible = [QEstimatedElasticity = 0];
   text = "Calculation result for Optimal Price will be displayed if basic data in Price Elasticity Estimation exists.";
   emphasis Warning = [true];
}

Example 1 - Markdown text example code