public TextLabel(string font, int size, TypeFace type, Point position, Color color, string text, bool shadow, bool show)
 {
     Id           = DX9Overlay.TextCreate(font, size, type.HasFlag(TypeFace.BOLD), type.HasFlag(TypeFace.ITALIC), position.X, position.Y, (uint)color.ToArgb(), text, shadow, show);
     _text        = text;
     _shadow      = shadow;
     base.Visible = show;
     _color       = color;
     _position    = position;
 }