[C#] | public void setDefaultFonts(string normal [, string bold [, string italic [, string boldItalic ]]]); |
[VB] | Public Sub setDefaultFonts(normal As String [, bold As String [, italic As String [, boldItalic As String ]]]) |
ChartDirector 7.1 (.NET Edition)
BaseChart.
Usage
[C#] | public void setDefaultFonts(string normal [, string bold [, string italic [, string boldItalic ]]]); |
[VB] | Public Sub setDefaultFonts(normal As String [, bold As String [, italic As String [, boldItalic As String ]]]) |
Description
Arguments
Argument | Default | Description |
---|---|---|
normal | (Mandatory) | The default normal font. This is the same as the first font in the font table. |
bold | "" | The default bold font. This is the same as the second font in the font table. An empty string means the default is unchanged. |
italic | "" | The default italic font. This is the same as the third font in the font table. An empty string means the default is unchanged. |
boldItalic | "" | The default bold-italic font. This is the same as the fourth font in the font table. An empty string means the default is unchanged. |
Return Value