[]
Gets or sets the name of the report item.
public string Name { get; set; }
Type | Description |
---|---|
string | A string value indicating the name of the report item. |
var reportItem = new TextBox();
reportItem.Name = "TitleTextBox";
string textBoxName = reportItem.Name;