CustomPropertyCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a custom property from the collection.
Overloads
Item[Int32] |
Gets a custom property at a specified index. |
Item[String] |
Returns a named custom property from the collection. |
Item[Int32]
Gets a custom property at a specified index.
public:
property Microsoft::ReportingServices::ReportRendering::CustomProperty ^ default[int] { Microsoft::ReportingServices::ReportRendering::CustomProperty ^ get(int index); };
public Microsoft.ReportingServices.ReportRendering.CustomProperty this[int index] { get; }
member this.Item(int) : Microsoft.ReportingServices.ReportRendering.CustomProperty
Default Public ReadOnly Property Item(index As Integer) As CustomProperty
Parameters
- index
- Int32
The index of the custom property to get.
Property Value
A CustomProperty object.
Applies to
Item[String]
Returns a named custom property from the collection.
public:
property Microsoft::ReportingServices::ReportRendering::CustomProperty ^ default[System::String ^] { Microsoft::ReportingServices::ReportRendering::CustomProperty ^ get(System::String ^ name); };
public Microsoft.ReportingServices.ReportRendering.CustomProperty this[string name] { get; }
member this.Item(string) : Microsoft.ReportingServices.ReportRendering.CustomProperty
Default Public ReadOnly Property Item(name As String) As CustomProperty
Parameters
- name
- String
The name of the custom property.
Property Value
A CustomProperty object.