ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / CustomPropertyDefinitionCollection Class / Item Property / Item(String) Property
A System.String value indicating the name of the property definition to get.
Example

In This Topic
    Item(String) Property
    In This Topic
    Gets a CustomPropertyDefinition using the specified name.
    Syntax
    'Declaration
     
    Public Overloads ReadOnly Property Item( _
       ByVal name As String _
    ) As CustomPropertyDefinition
    public CustomPropertyDefinition Item( 
       string name
    ) {get;}

    Parameters

    name
    A System.String value indicating the name of the property definition to get.

    Property Value

    The CustomPropertyDefinition with the specified name, or null if not found.
    Example
    var customProperties = new CustomPropertyDefinitionCollection();
    var customProperty = customProperties["Property1"];
    See Also