Ejemplo n.º 1
0
 public Header(int width, int height, int fileLength, int FrameCount, int FrameRate)
 {
     this._FileLength = fileLength;
     this._FrameSize = new RECT(0, 0, width, height);
     this._FrameCount = new UI16(FrameCount);
     this._FrameRate = new FB8((float) FrameRate);
 }
Ejemplo n.º 2
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;
 }