[]
Gets or sets the height of a shape that is used to crop an image.
Use this method to retrieve the current crop shape height from the ICrop settings.
double ShapeHeight { get; set; }
Property ShapeHeight As Double
worksheet.Range["A1:B2"].Value = new object[,] {{"Name", "Value"}, {"Test", 100}};
IShape picture = worksheet.Shapes.AddCameraPicture("=$A$1:$B$2", 20, 20);
ICrop crop = picture.PictureFormat.Crop;
crop.ShapeHeight = 60;
double shapeHeight = crop.ShapeHeight;