Ejemplo n.º 1
0
 public TagDefineEditText(SwfFont font, int height, RECT Bounds, string text)
     : base(0x25)
 {
     this.VarName = string.Empty;
     this.Text = string.Empty;
     this.Selectable = false;
     this.HasBorder = false;
     this.ReadOnly = true;
     this.WordWrap = false;
     this.Multitile = false;
     this.PasswordFiled = false;
     this.TextColor = new RGB(0, 0, 0);
     this.Height = 200;
     this._Bounds = Bounds;
     this.Height = height;
     this.FontID = font.FontID;
     this.Text = text;
 }
Ejemplo n.º 2
0
 public void Define(SwfFont font)
 {
     this._charID++;
     font.FontID = this._charID;
     this.Add(font);
 }