Format Property

The format of the Excel document.

Syntax

Property Format As VSExcelFormat

Parameters

None

Examples

IronPython

#Get format of Excel document
doc = VSExcelDocument("D:\Data\Tabular.Transaction.Header.xlsx", FileMode.Open)
myFormat = doc.Format

#Set format of Excel document
#Don't set this property directly!


C#

//Get format of Excel document
VSExcelDocument doc = new VSExcelDocument(@"D:\Data\Tabular.Transaction.Header.xlsx", FileMode.Open);
VSExcelFormat myFormat = doc.Format;


//Set format of Excel document

//Don't set this property directly!

Remarks