Interface IPicture
Interface publishes picture functionality
Inherited Members
Namespace: Syncfusion.DLS
Assembly: Syncfusion.DLS.Base.dll
Syntax
public interface IPicture : IParagraphItem, IEntityBase
Properties
Height
Gets / sets picture height.
Declaration
float Height { get; set; }
Property Value
Type |
---|
System.Single |
HeightScale
Gets / sets picture height scale factor in percent.
Declaration
float HeightScale { get; set; }
Property Value
Type |
---|
System.Single |
Image
Gets internal System.Drawing.Image object.
Declaration
Image Image { get; }
Property Value
Type |
---|
System.Drawing.Image |
Width
Gets / sets picture width.
Declaration
float Width { get; set; }
Property Value
Type |
---|
System.Single |
WidthScale
Gets / sets picture width scale factor in percent.
Declaration
float WidthScale { get; set; }
Property Value
Type |
---|
System.Single |
Methods
LoadImage(Byte[])
Declaration
void LoadImage(byte[] imageBytes)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | imageBytes |
LoadImage(Image)
Loads System.Drawing.Image object.
Declaration
void LoadImage(Image image)
Parameters
Type | Name | Description |
---|---|---|
System.Drawing.Image | image |