[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItem.CustomProperties

CustomProperties Property

CustomProperties

Gets a collection of custom property elements.

Declaration
public CustomPropertyDefinitionCollection CustomProperties { get; }
Property Value
Type Description
CustomPropertyDefinitionCollection

A CustomPropertyDefinitionCollection containing the custom properties for the report item.

Examples
var reportItem = new TextBox();
var customProperties = reportItem.CustomProperties;
customProperties.Add(new CustomPropertyDefinition { Name = "Property1", Value = "Value1" });