Eryan.Wrappers.MenuEntry.MenuEntry C# (CSharp) Method

MenuEntry() public method

Builds an menuentry
public MenuEntry ( string text, int absoluteTop, int absoluteLeft, int height, int width ) : System
text string The unparsed eve client menu entry text
absoluteTop int The lowest Y coordinate of the menu entry
absoluteLeft int The lowest X coordinate of the menu entry
height int The height of the entry on screen
width int The width of the entry on screen
return System
        public MenuEntry(string text, int absoluteTop, int absoluteLeft, int height, int width)
        {
            this.text = text;
            this.y = absoluteTop;
            this.x = absoluteLeft;
            this.height = height;
            this.width = width;
        }
MenuEntry