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.
Definition
Namespace:Telerik.WebReportDesigner.Services.Controllers
Assembly:Telerik.WebReportDesigner.Services.dll
Syntax:
public class ReportItemDefinitionData
Inheritance: objectReportItemDefinitionData
Constructors
public ReportItemDefinitionData()
Properties
Item
object
Gets or sets the JSON-serialized report item definition containing the component structure and properties.
public object Item { get; set; }
The report item definition is serialized as JSON to enable efficient transmission of component data between the Web Report Designer client and service.
ItemName
string
Gets or sets the name of the report item for identification and targeting within the report structure.
public string ItemName { get; set; }
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.