[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IPictureFormat.CropBottom

CropBottom Property

CropBottom

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

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

Declaration
double CropBottom { get; set; }
Property CropBottom 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.CropBottom = 8;
double cropBottom = picture.PictureFormat.CropBottom;