Name Property (ReportItem)
Gets or sets the name of the report item.
public string Name {get; set;}
'Declaration
Public Property Name As String
Property Value
A
System.String value indicating the name of the report item.
var reportItem = new TextBox();
reportItem.Name = "TitleTextBox";
string textBoxName = reportItem.Name;