C# 클래스 NewTOAPIA.DirectShow.DsRect

파일 보기 프로젝트 열기: Wiladams/NewTOAPIA

공개 프로퍼티들

프로퍼티 타입 설명
bottom int
left int
right int
top int

공개 메소드들

메소드 설명
DsRect ( ) : System

Empty contructor. Initialize all fields to 0

DsRect ( Rectangle rectangle ) : System

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 ( Rectangle r ) : DsRect

Get a new DirectShowLib.DsRect instance for a given System.Drawing.Rectangle

GetHashCode ( ) : int
ToRectangle ( ) : Rectangle

Get the System.Drawing.Rectangle equivalent to this DirectShowLib.DsRect instance.

ToString ( ) : string

Provide de string representation of this DsRect instance

메소드 상세

DsRect() 공개 메소드

Empty contructor. Initialize all fields to 0
public DsRect ( ) : System
리턴 System

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.
public DsRect ( Rectangle rectangle ) : System
rectangle System.Drawing.Rectangle A
리턴 System

DsRect() 공개 메소드

A parametred constructor. Initialize fields with given values.
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
리턴 System

FromRectangle() 공개 정적인 메소드

Get a new DirectShowLib.DsRect instance for a given System.Drawing.Rectangle
public static FromRectangle ( Rectangle r ) : DsRect
r System.Drawing.Rectangle The used to initialize this new DirectShowLib.DsGuid
리턴 DsRect

GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int

ToRectangle() 공개 메소드

Get the System.Drawing.Rectangle equivalent to this DirectShowLib.DsRect instance.
public ToRectangle ( ) : Rectangle
리턴 System.Drawing.Rectangle

ToString() 공개 메소드

Provide de string representation of this DsRect instance
public ToString ( ) : string
리턴 string

프로퍼티 상세

bottom 공개적으로 프로퍼티

public int bottom
리턴 int

left 공개적으로 프로퍼티

public int left
리턴 int

right 공개적으로 프로퍼티

public int right
리턴 int

top 공개적으로 프로퍼티

public int top
리턴 int