[]
Gets or sets the width, in points, of the object.
Use this property to get or change the current width of the picture field represented by this IGraphic.
double Width { get; set; }
Property Width As Double
IGraphic graphic = worksheet.PageSetup.CenterHeaderPicture;
using (MemoryStream stream = CreateSampleImageStream())
{
graphic.SetGraphicStream(stream, ImageType.PNG);
}
double width = graphic.Width;