[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IGraphic.Filename

Filename Property

Filename

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.

Declaration
string Filename { get; set; }
Property Filename As String
Examples
IGraphic graphic = worksheet.PageSetup.CenterHeaderPicture;
string imagePath = CreateSampleImageFile();
graphic.Filename = imagePath;
string filename = graphic.Filename;