C# Class AuraPhotoViewer.ResizeableWindow.RECT

Datei anzeigen Open project: ProRoman/Aura_PhotoViewer

Public Properties

Property Type Description
Empty RECT
bottom int
left int
right int
top int

Public Methods

Method Description
Equals ( object obj ) : bool

Determine if 2 RECT are equal (deep compare)

GetHashCode ( ) : int

Return the HashCode for this struct (not garanteed to be unique)

RECT ( RECT rcSrc ) : System

Win32

RECT ( int left, int top, int right, int bottom ) : System

Win32

ToString ( ) : string

Return a user friendly representation of this struct

operator ( ) : bool

Determine if 2 RECT are different(deep compare)

Method Details

Equals() public method

Determine if 2 RECT are equal (deep compare)
public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

Return the HashCode for this struct (not garanteed to be unique)
public GetHashCode ( ) : int
return int

RECT() public method

Win32
public RECT ( RECT rcSrc ) : System
rcSrc RECT
return System

RECT() public method

Win32
public RECT ( int left, int top, int right, int bottom ) : System
left int
top int
right int
bottom int
return System

ToString() public method

Return a user friendly representation of this struct
public ToString ( ) : string
return string

operator() public static method

Determine if 2 RECT are different(deep compare)
public static operator ( ) : bool
return bool

Property Details

Empty public_oe static_oe property

Win32
public static RECT Empty
return RECT

bottom public_oe property

Win32
public int bottom
return int

left public_oe property

Win32
public int left
return int

right public_oe property

Win32
public int right
return int

top public_oe property

Win32
public int top
return int