Server.Gumps.GumpHtml.GumpHtml C# (CSharp) Méthode

GumpHtml() public méthode

public GumpHtml ( int x, int y, int width, int height, string text, bool background, bool scrollbar ) : System
x int
y int
width int
height int
text string
background bool
scrollbar bool
Résultat System
		public GumpHtml( int x, int y, int width, int height, string text, bool background, bool scrollbar )
		{
			m_X = x;
			m_Y = y;
			m_Width = width;
			m_Height = height;
			m_Text = text;
			m_Background = background;
			m_Scrollbar = scrollbar;
		}