Class ReportItemDefinitionData
Model that contains a JSON-serialized report item definition and an item name for Web Report Designer component operations. Used by the Web Report Designer service to pass individual report item data along with identification information for component-specific operations.
Inheritance
Namespace: Telerik.WebReportDesigner.Services.Controllers
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public class ReportItemDefinitionData
Remarks
This model is commonly used in endpoints that operate on individual report components, such as binding path analysis and component property operations.
Constructors
ReportItemDefinitionData()
Declaration
public ReportItemDefinitionData()
Properties
Item
Gets or sets the JSON-serialized report item definition containing the component structure and properties.
Declaration
public object Item { get; set; }
Property Value
|
System.Object
|
Remarks
The report item definition is serialized as JSON to enable efficient transmission of component data between the Web Report Designer client and service.
ItemName
Gets or sets the name of the report item for identification and targeting within the report structure.
Declaration
public string ItemName { get; set; }
Property Value
|
System.String
|
Remarks
Used to locate and identify specific report items within the report structure for operations such as binding path analysis and property manipulation. The item name must be unique within the scope of its containing report or report section.