C# 클래스 HasK.Controls.Graph.DRect

Graphical 2D rectangle with double coordinates
파일 보기 프로젝트 열기: xHasKx/CSharp.Controls.Graph.Chart 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Height double
Width double
X double
Y double

공개 메소드들

메소드 설명
DRect ( double x, double y, double width, double height ) : System

Create graphical 2D rectangle

ToString ( ) : string

Convert DRect object to string representation

메소드 상세

DRect() 공개 메소드

Create graphical 2D rectangle
public DRect ( double x, double y, double width, double height ) : System
x double X coordinate of left-top corner
y double Y coordinate of left-top corner
width double Width of rectangle
height double Height of rectangle
리턴 System

ToString() 공개 메소드

Convert DRect object to string representation
public ToString ( ) : string
리턴 string

프로퍼티 상세

Height 공개적으로 프로퍼티

Height of rectangle
public double Height
리턴 double

Width 공개적으로 프로퍼티

Width of rectangle
public double Width
리턴 double

X 공개적으로 프로퍼티

X coordinate of left-top corner
public double X
리턴 double

Y 공개적으로 프로퍼티

Y coordinate of left-top corner
public double Y
리턴 double