IrrlichtNETCP.GUIEnvironment.AddStaticTextW C# (CSharp) Method

AddStaticTextW() public method

public AddStaticTextW ( string text, IrrlichtNETCP.Rect rectangle, bool border, bool wordWrap, GUIElement parent, int id, bool fillBackground ) : GUIStaticText
text string
rectangle IrrlichtNETCP.Rect
border bool
wordWrap bool
parent GUIElement
id int
fillBackground bool
return GUIStaticText
        public GUIStaticText AddStaticTextW(string text, Rect rectangle, bool border, bool wordWrap, GUIElement parent, int id, bool fillBackground)
        {
            IntPtr par = (parent == null ? IntPtr.Zero : parent.Raw);
            return (GUIStaticText)NativeElement.GetObject(GuiEnv_AddStaticTextW(_raw, text, rectangle.ToUnmanaged(), border, wordWrap, par, id, fillBackground),
                                                      typeof(GUIStaticText));
        }