Property | Type | Description | |
---|---|---|---|
bottom | int | ||
left | int | ||
right | int | ||
top | int |
Method | Description | |
---|---|---|
DsRect ( ) : System |
Empty contructor. Initialize all fields to 0
|
|
DsRect ( |
A parametred constructor. Initialize fields with a given System.Drawing.Rectangle. Warning, DsRect define a rectangle by defining two of his corners and System.Drawing.Rectangle define a rectangle with his upper/left corner, his width and his height. |
|
DsRect ( int left, int top, int right, int bottom ) : System |
A parametred constructor. Initialize fields with given values.
|
|
FromRectangle ( |
Get a new DirectShowLib.DsRect instance for a given System.Drawing.Rectangle
|
|
GetHashCode ( ) : int | ||
ToRectangle ( ) : |
Get the System.Drawing.Rectangle equivalent to this DirectShowLib.DsRect instance.
|
|
ToString ( ) : string |
Provide de string representation of this DsRect instance
|
public DsRect ( |
||
rectangle | A |
|
return | System |
public DsRect ( int left, int top, int right, int bottom ) : System | ||
left | int | the left value |
top | int | the top value |
right | int | the right value |
bottom | int | the bottom value |
return | System |
public static FromRectangle ( |
||
r | The |
|
return |