[]
Gets or sets a label for identifying an instance of a report item within the client UI (e.g., a user-friendly label for searching or appearing in the Document Map).
public ExpressionInfo Label { get; set; }
Type | Description |
---|---|
ExpressionInfo | An ExpressionInfo object representing the label text. |
<p>The label is used in hierarchical listings of report items within the UI (the Document Map) based on the object containment hierarchy in the report definition.
Peer items are listed in left-to-right, top-to-bottom order.
If the expression returns null
, no item is added to the Document Map.
Labels are not used for report items in the page header or footer.
var reportItem = new TextBox();
reportItem.Label = "Section 1";