Ejemplo n.º 1
0
        private void SetDeviceFont(string name, char[] table, ISystemServices services)
        {
            if (DeviceFont != null)
                return;

            GlyphChars = table;
            DeviceFont = services.LoadFont(name);
            if (DeviceFont == null)
                services.Log("Font '{0}' does not exist!", name);
        }
Ejemplo n.º 2
0
 protected virtual void UnhandledTag(ISwfTag tag, ISystemServices services)
 {
     services.Log("Unhandled tag '{0}' inside {1}!", tag.ToString(), GetType().Name);
 }