'Declaration Public Property Label As ExpressionInfo
public ExpressionInfo Label {get; set;}
'Declaration Public Property Label As ExpressionInfo
public ExpressionInfo Label {get; set;}
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";