C# Class GraphicEditor.MainWindow.Rect

Mostrar archivo Open project: msCube/Gallery

Public Properties

Property Type Description
Empty System.Windows.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 equal (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 System.Windows.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 equal (deep compare)
public static operator ( ) : bool
return bool

Property Details

Empty public_oe static_oe property

Win32
public static Rect,System.Windows Empty
return System.Windows.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