C# Class OpenTK.Platform.X11.X11WindowInfo

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

Public Methods

Method Description
Dispose ( ) : void

Disposes of this X11WindowInfo 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.

X11WindowInfo ( ) : System

Constructs a new X11WindowInfo class.

X11WindowInfo ( IntPtr handle, X11WindowInfo parent ) : System

Constructs a new X11WindowInfo class from the specified window handle and parent.

Method Details

Dispose() public method

Disposes of this X11WindowInfo 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

X11WindowInfo() public method

Constructs a new X11WindowInfo class.
public X11WindowInfo ( ) : System
return System

X11WindowInfo() public method

Constructs a new X11WindowInfo class from the specified window handle and parent.
public X11WindowInfo ( IntPtr handle, X11WindowInfo parent ) : System
handle System.IntPtr The handle of the window.
parent X11WindowInfo The parent of the window.
return System