[]
Gets or sets the x-axis offset of the image that is to be cropped.
double PictureOffsetX { get; set; }
Property PictureOffsetX 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.PictureOffsetX = 10;
double pictureOffsetX = crop.PictureOffsetX;