User`s guide
12 Classes – Alphabetical List
12-18
A session-unique ID is generated as part of document element creation. You can specify
an ID to replace the generated ID.
Tag — Tag for document element
string
Tag for document element, specified as a string.
A session-unique ID is generated as part of document element creation. The generated
tag has the form CLASS:ID, where CLASS is the class of the element and ID is the value
of the Id property of the object. You can specify a tag to replace the generated tag.
Specify your own tag value, for example, to make it easier to identify where an issue
occurred during document generation.
Value — Option to use bold or regular weight for a text object
[] (default) | logical value
The possible values are:
• 0— uses regular weight text
• 1— renders text in bold
Data Types: logical
Examples
Create Paragraph With Bold and Regular-Weight Text
import mlreportgen.dom.*;
doctype = 'html';
d = Document('test',doctype);
p = Paragraph('bold text ');
p.Style = {Bold};
append(d,p);
t = Text('regular weight text');
t.Style = {Bold(false)};
append(p,t);
close(d);