Object Reference : Object View and Procedure Reference : Geomap
  
 
setfont
Set the font for area labels in the geomap.
Syntax
table_name.setfont font_args
The font_args may include one or more of the following:
 
type([face], [pt], [+/- b], [+/- i], [+/- u], [+/- s])
Set characteristics of the font for the graph element type. The font name (face), size (pt), and characteristics are all optional. face should be a valid font name, enclosed in double quotes. pt should be the font size in points. The remaining options specify whether to turn on/off boldface (b), italic (i), underline (u), and strikeout (s) styles.
and type is one of “all”, “axes”, “legend”, “text”, “obs”, where “axes” refers to the axes labels, “legend” refers to the graph legend, “text” refers to the text objects, “obs” refers to the observation scale, and “all” refers to all of the elements.
Examples
gmap1.setfont "Times New Roman" +i
sets the font to Times New Roman Italic.
gmap1.setfont 8pt
changes all of text in the region to 8 point.
gmap1.setfont +b -i
removes the italic, and adds boldface to the area labels.
The commands:
gmap1.setfont -s +u 14pt
gmap1.setfont "Batang" 14pt +u
he first command changes the point size to 14, removes strike-through and adds underscoring. The second changes the typeface to Batang, and adds underscoring,
Cross-references
See “Geomaps” for a discussion of geomaps.
See Geomap::setfillcolor for details on changing fill color, and Geomap::options for information on changing outline colors.