| ||
SharpPlot Tutorials General Tutorials Chart Samples Style Examples SharpLeaf Tutorials Document Layout Tutorials Text Flow Tutorials Table Tutorials Visual Glossaries SharpPlot Class SharpPlot Properties SharpPlot Structures SharpPlot Enumerations PageMap Class SharpLeaf Reference SharpLeaf Class SharpLeaf Properties SharpLeaf Methods Table Class Table Properties Table Methods SharpLeaf Structures FontType Structure ParagraphStyle Structure BoxStyle Structure SharpLeaf Enumerations DocumentLayout Classes DocumentLayout Class PageLayout Class PageElement Abstract Class Frame : PageElement Class TextBlock : PageElement Class ImageBlock : PageElement Class Box : PageElement Class Rule : PageElement Class Common Reference Document Class VectorMath Class DbUtil Class Download Release Notes Licensing |
SharpPlot Reference > SharpPlot Methods > DefineFont Method SharpPlot.DefineFont MethodAdd a short code for a complex font definition to use in many font setters. Examplesp.DefineFont("AS","Arial,sans","filter:url(#MyShadow);opacity:0.8"); Overloads
Creating a stylesheetThis method may be used simply to define a ‘house style’ of fonts to save possible errors in typing the full name, and to make future change much simpler. You may give each font face a short code, for example: sp.DefineFont("VN","Verdana,Arial,Sans"); // Try Verdana, then Arial, then fallback to any font of the "sans" family. Note that as for other Font setters, a list of comma-separated fallbacks fonts can be provided. From now on, you can use any of the four short codes ‘VN’ ‘VNB’ ‘VNI’ or ‘VNBI’ to get the four variants of this basic font. To have your Captions in Verdana,Italic, (at default size) you simply use: sp.SetCaptionFont("VNI",Color.Teal); Adding extra CSS detailsSharpPlot allows you to insert any extra CSS properties you want after the font name. These are passed on to charts rendered as SVG or VML, and may be used for various special effects. They are ignored in images and PDF rendering. sp.DefineFont("VN","Verdana","opacity:0.8"); You can set any standard font property here, for example letter-spacing to open out heading text slightly, or reference a filter set with IncludeSource. Setting up PostScript equivalentsIf you are generating an EPS document, you may need to map your screen font to a PostScript font known on the printer. sp.DefineFont("VN","Verdana","","Univers"); You may also provide the four variants (regular, bold, italic, bold+italic) as a comma-separated list, if they do not have standard postscript variant names. So the line below is equivalent to the above : sp.DefineFont("VN","Verdana","","Univers,Univers-Bold,Univers-Italic,Univers-BoldItalic"); Check with the repro house to be sure you get the names exactly correct here! Embedding PFA font filesA PFA font file can be embedded if a fontname is followed by ‘@’ and then the path to the font file. That allows the Postscript file to be independent of the presence of the font by the displaying device. sp.DefineFont("VN,"Verdana","","Univers@C:\\fonts\\univers.pfa"; // specify the font file to embed that has the font as described by the name. A PFA font file can be generated from a TTF file with “ttd2pt1 -e”. Of course a different file can be provided for each of the four variants. See also ... |