[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IPictureFormat.CropLeft

CropLeft Property

CropLeft

Gets or sets the number of points that are cropped off the left side of the specified picture.

Use this property to determine how much of the source image is hidden from the left edge of the picture.

Declaration
double CropLeft { get; set; }
Property CropLeft As Double
Examples
worksheet.Range["A1:B2"].Value = new object[,] {
    {"Name", "Value"},
    {"Test", 100}
};
IShape picture = worksheet.Shapes.AddCameraPicture("=$A$1:$B$2", 20, 20);
picture.PictureFormat.CropLeft = 8;
double cropLeft = picture.PictureFormat.CropLeft;