Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The PlainText UDR is used to create a plain text element. There are elements to set if the text should be bold or italic.

You can use the following APL code to create text with both bold and italic styles

PlainText myText = udrCreate(PlainText);
myText.value = "This text has the styles bold and italic.";
myText.italic = true;
myText.bold = true;

The following fields are included in the PlainText UDR:

Field

Description

attributes (map<string,string>)

This field may contain extra attributes to be added.

bold (boolean)

This field may contain a boolean if the text should be bold.
The default is false.

cssClasses (list<string>)

This field may contain a list of extra values added to class attribute. This is typically used to style the component. Please read more on Bootstrap.

id (string)

This field may contain the id of the component

italic (boolean)

This field may contain a boolean if the text should be italic.
The default is false.

preFormatted (boolean)

This field may contain a boolean if the text is already formatted.
The default is false.

value (string)

This field contain the text.

  • No labels