C# Class OpenTK.Platform.Windows.WinWindowInfo

Inheritance: IWindowInfo, IDisposable
Show file Open project: andykorth/opentk Class Usage Examples

Public Methods

Method Description
Dispose ( ) : void

Releases the unmanaged resources consumed by this instance.

Equals ( object obj ) : bool

Checks if this and obj reference the same win32 window.

GetHashCode ( ) : int

Returns the hash code for this instance.

ToString ( ) : string

Returns a System.String that represents the current window.

WinWindowInfo ( ) : System

Constructs a new instance.

WinWindowInfo ( IntPtr handle, WinWindowInfo parent ) : System

Constructs a new instance with the specified window handle and paren.t

Private Methods

Method Description
Dispose ( bool manual ) : void

Method Details

Dispose() public method

Releases the unmanaged resources consumed by this instance.
public Dispose ( ) : void
return void

Equals() public method

Checks if this and obj reference the same win32 window.
public Equals ( object obj ) : bool
obj object The object to check against.
return bool

GetHashCode() public method

Returns the hash code for this instance.
public GetHashCode ( ) : int
return int

ToString() public method

Returns a System.String that represents the current window.
public ToString ( ) : string
return string

WinWindowInfo() public method

Constructs a new instance.
public WinWindowInfo ( ) : System
return System

WinWindowInfo() public method

Constructs a new instance with the specified window handle and paren.t
public WinWindowInfo ( IntPtr handle, WinWindowInfo parent ) : System
handle System.IntPtr The window handle for this instance.
parent WinWindowInfo The parent window of this instance (may be null).
return System