Gets manufacturer and license information associated with the specified symbol set.

public static SymbolMap GetSymbolMap( 
string symbolSet 
)

Parameters

symbolSet

Type: string

The name of the symbol set.

Return Value

A SymbolMap object that exposes various properties.
This example outputs information for the 'Symbol Factory' symbol set.
 var sf = WV.GetSymbolMap("Symbol Factory");
 
 var info = string.Format("{0}\n\nManufacturer:\t{1}\n{2}",
   sf.Description, sf.Manufacturer, sf.Copyright);
 
 WV.MsgBox(info, sf.SymbolSet);