[]
Gets or sets the number of points that are cropped off the top of the specified picture.
double CropTop { get; set; }
Property CropTop As Double
worksheet.Range["A1:B2"].Value = new object[,] {{"Name", "Value"}, {"Test", 100}};
IShape picture = worksheet.Shapes.AddCameraPicture("=$A$1:$B$2", 20, 20);
IPictureFormat pictureFormat = picture.PictureFormat;
pictureFormat.CropTop = 10;
double cropTop = pictureFormat.CropTop;