Hi All
I'm creating Excel documents using what I understand to be SpreadsheetML. The XML syntax allows the specification of font using the following syntax:
My problem is that our client has specified that they want the spreadsheet to be in Calibri (Body) font. How can I specify that in this code? ss:FontName="Calibri (Body)" doesn't work. Some research I did on the web indicated that the "(Body)" part isn't even part of the actual fint name, but is somethign added by Excel.
Any help would be appreciated.
I'm creating Excel documents using what I understand to be SpreadsheetML. The XML syntax allows the specification of font using the following syntax:
<Style ss:ID="s200">
<Alignment ss:Vertical="Bottom"/>
<Borders>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="2"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:FontName="Calibri" x:Family="Swiss" ss:Size="11" ss:Color="#000000" ss:Bold="1"/>
<Interior ss:Color="#FFFF00" ss:Pattern="Solid"/>
</Style>
My problem is that our client has specified that they want the spreadsheet to be in Calibri (Body) font. How can I specify that in this code? ss:FontName="Calibri (Body)" doesn't work. Some research I did on the web indicated that the "(Body)" part isn't even part of the actual fint name, but is somethign added by Excel.
Any help would be appreciated.