[]
Gets or sets the specified ReportParameter item from the ReportParameterCollection by numeric index.
public ReportParameter this[int index] { get; set; }
Type | Name | Description |
---|---|---|
int | index | The zero-based index of the element to get or set. |
Type | Description |
---|---|
ReportParameter | The ReportParameter item from the collection. |
Gets the specified ReportParameter item from the ReportParameterCollection by name.
public ReportParameter this[string name] { get; }
Type | Name | Description |
---|---|---|
string | name | The name of the element to get. |
Type | Description |
---|---|
ReportParameter | The ReportParameter item from the collection. |