Axiom.RenderSystems.OpenGL.Win32Window.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":
						//System.Windows.Forms.Control ctrl = System.Windows.Forms.Control.FromChildHandle( _hWindow );
						//return ctrl;
						return _hWindow;
					default:
						return null;
				}
			}
		}