[]
Gets a collection of custom property elements.
public CustomPropertyDefinitionCollection CustomProperties { get; }
Type | Description |
---|---|
CustomPropertyDefinitionCollection | A CustomPropertyDefinitionCollection containing the custom properties for the report item. |
var reportItem = new TextBox();
var customProperties = reportItem.CustomProperties;
customProperties.Add(new CustomPropertyDefinition { Name = "Property1", Value = "Value1" });