[]
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.
double CropLeft { get; set; }
Property CropLeft As Double
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;