Interface IReportDesignerServiceConfiguration
Represents an object containing all dependencies and settings which the web report designer service needs to operate.
Namespace: Telerik.WebReportDesigner.Services
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public interface IReportDesignerServiceConfiguration
Properties
DefinitionStorage
Gets or sets an IDefinitionStorage implementation instance that will be used to open, save, and list available Report definitions.
Declaration
IDefinitionStorage DefinitionStorage { get; set; }
Property Value
|
IDefinitionStorage
|
Remarks
Use this property setter in order to provide a report definition storage instance. Set a built-in definition storage implementation or a custom implementation. This is mandatory setting without defaults.
See Also
DeniedPermissions
Gets or sets permissions to deny some functions in web report designer.
Declaration
string[] DeniedPermissions { get; set; }
Property Value
|
System.String[]
|
Remarks
Use this property setter in order to restrict functionality in web report designer on application level. Applied only on the client, does not provide server-side validation.
ResourceStorage
Gets or sets an IResourceStorage implementation instance that will be used to list and save available resources, such as embedded images, CSV/JSON data source files, etc.
Declaration
IResourceStorage ResourceStorage { get; set; }
Property Value
|
IResourceStorage
|
Remarks
Use this property setter in order to provide a resource storage instance. Set a built-in resource storage implementation or a custom implementation. This is not a mandatory setting with default location - the DefinitionStorage's location.
See Also
SettingsStorage
Gets or sets an ISettingsStorage implementation instance that will be used to list and save the available database connections.
Declaration
ISettingsStorage SettingsStorage { get; set; }
Property Value
|
ISettingsStorage
|
Remarks
Use this property setter in order to provide a database connnection storage instance. Set a built-in database connection storage implementation or a custom implementation. This is mandatory setting without defaults.
See Also
SharedDataSourceStorage
TemplateDefinitionStorage
Gets or sets an IDefinitionStorage implementation instance that will be used to open, save, and list available report template definitions.
Declaration
IDefinitionStorage TemplateDefinitionStorage { get; set; }
Property Value
|
IDefinitionStorage
|
Remarks
Use this property setter in order to provide a report template definition storage instance. Set a built-in definition storage implementation or a custom implementation. This is not a mandatory setting with default location - the DefinitionStorage's location.