ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportItem Class / CustomProperties Property
Example

In This Topic
    CustomProperties Property (ReportItem)
    In This Topic
    Gets a collection of custom property elements.
    Syntax
    'Declaration
     
    Public ReadOnly Property CustomProperties As CustomPropertyDefinitionCollection
    public CustomPropertyDefinitionCollection CustomProperties {get;}

    Property Value

    A CustomPropertyDefinitionCollection containing the custom properties for the report item.
    Example
    var reportItem = new TextBox();
    var customProperties = reportItem.CustomProperties;
    customProperties.Add(new CustomPropertyDefinition { Name = "Property1", Value = "Value1" });
    See Also