Register() публичный Метод

Register a ttf- or a ttc-file.
public Register ( string path ) : void
path string the path to a ttf- or ttc-file
Результат void
Пример #1
0
        public static void Register(Properties attributes)
        {
            string path;
            string alias = null;

            path  = attributes.Remove("path");
            alias = attributes.Remove("alias");

            fontImp.Register(path, alias);
        }