[]
Represents properties and methods that apply to pictures.
public interface IPictureFormat
Gets or sets the brightness of the specified picture or OLE object. The value for this property must be a number from 0.0 (dimmest) to 1.0 (brightest).
double Brightness { get; set; }
Gets or sets the type of color transformation applied to the specified picture.
PictureColorType ColorType { get; set; }
Gets or sets the contrast for the specified picture or OLE object. The value for this property must be a number from 0.0 (the least contrast) to 1.0 (the greatest contrast).
double Contrast { get; set; }
Gets the ICrop object that represents the cropping settings for the specified IPictureFormat object.
ICrop Crop { get; }
Gets or sets the number of points that are cropped off the bottom of the specified picture.
double CropBottom { get; set; }
Gets or sets the number of points that are cropped off the left side of the specified picture.
double CropLeft { get; set; }
Gets or sets the number of points that are cropped off the right side of the specified picture.
double CropRight { get; set; }
Gets or sets the number of points that are cropped off the top of the specified picture.
double CropTop { get; set; }
Gets or sets the byte array of this picture.
byte[] Fill { get; set; }
Gets or sets the reference of current picture.
string Reference { get; set; }
Gets or sets the degree of transparency of the specified picture as a value from 0.0 (opaque) through 1.0 (clear).
double Transparency { get; set; }
Gets or sets whether the specified picture format uses a transparent background.
bool TransparentBackground { get; set; }
Gets the image type of this picture.
ImageType Type { get; }
Gets the URL of the picture from JSON.
string Url { get; }