Gets manufacturer and license information associated with the specified symbol set.
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);

