Interface IReportDesignerController
Interface for Designer Controller
Inherited Members
Namespace: Syncfusion.EJ.ReportDesigner
Assembly: Syncfusion.EJ.ReportDesigner.dll
Syntax
public interface IReportDesignerController : IReportController
Methods
GetFile(String, Boolean)
Get the Specific file information
Declaration
FileModel GetFile(string filename, bool isOverride)
Parameters
Type | Name | Description |
---|---|---|
System.String | filename | name of the file to download |
System.Boolean | isOverride | boolean state to override the file |
Returns
Type | Description |
---|---|
FileModel | Returns the information about the file |
GetFilePath(String)
Get the path of specific file
Declaration
string GetFilePath(string key)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | Name of the file to get the full path |
Returns
Type | Description |
---|---|
System.String | Returns the full path of file |
GetFiles(FileType)
Get the files list
Declaration
List<FileModel> GetFiles(FileType fileType)
Parameters
Type | Name | Description |
---|---|---|
FileType | fileType | collections of supported file extensions |
Returns
Type | Description |
---|---|
System.Collections.Generic.List<FileModel> | Returns the list of information about the files |
GetImage(String, String)
Download the Image
Declaration
object GetImage(string key, string image)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | key used to download the image |
System.String | image | file path of the image to download |
Returns
Type | Description |
---|---|
System.Object | Returns the object |
PostDesignerAction(Dictionary<String, Object>)
PostDesignerAction Actions
Declaration
object PostDesignerAction(Dictionary<string, object> jsonResult)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.Dictionary<System.String, System.Object> | jsonResult | The Data from the client-server call |
Returns
Type | Description |
---|---|
System.Object | Returns the object |
UploadFile(HttpPostedFile)
Save the file
Declaration
bool UploadFile(HttpPostedFile httpPostedFile)
Parameters
Type | Name | Description |
---|---|---|
System.Web.HttpPostedFile | httpPostedFile | information about the file to be upload |
Returns
Type | Description |
---|---|
System.Boolean | Returns the file upload status |
UploadReportAction()
Upload the Report
Declaration
void UploadReportAction()