[]
Gets or sets the picture file path.
Use this property to get or change the file path associated with the picture field represented by this IGraphic.
string Filename { get; set; }
Property Filename As String
IGraphic graphic = worksheet.PageSetup.CenterHeaderPicture;
string imagePath = CreateSampleImageFile();
graphic.Filename = imagePath;
string filename = graphic.Filename;