Interface IDocumentViewer
Default interface for providing viewer functionality
Namespace: Simplic.Framework.DBUI
Assembly: Simplic.Framework.DBUI.dll
Syntax
public interface IDocumentViewer
Methods
| Improve this Doc View SourceShow(Byte[], String, Byte[])
Show a simple blob in the viewer
Declaration
void Show(byte[] blob, string fileType, byte[] originalDocument = null)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | blob | Blob content as byte array |
System.String | fileType | file type, ending or mime type |
System.Byte[] | originalDocument | Original document |
Show(Byte[], String, Guid, String, Byte[])
Show a simple blob in the viewer
Declaration
void Show(byte[] blob, string fileType, Guid blobId, string viewername, byte[] originalDocument = null)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | blob | Blob content as byte array |
System.String | fileType | file type, ending or mime type |
System.Guid | blobId | Contains the blob id |
System.String | viewername | Viewer name |
System.Byte[] | originalDocument | Original document |