Axiom.RenderSystems.OpenGL.OpenTKWindow.this C# (CSharp) Метод

this() публичный Метод

public this ( string attribute ) : object
attribute string
Результат object
	    public override object this[ string attribute ]
		{
			get
			{
				switch ( attribute.ToLower() )
				{
					case "glcontext":
						return glContext;
					//case "window":
					//	return _window.WindowInfo.WindowHandle;
					case "nativewindow":
						return _window;
					default:
						return null;
				}
			}
		}