다음을 통해 공유


LineGeometry 생성자

정의

LineGeometry 클래스의 새 인스턴스를 초기화합니다.

오버로드

LineGeometry()

길이가 없는 LineGeometry 클래스의 새 인스턴스를 초기화합니다.

LineGeometry(Point, Point)

지정한 시작점과 끝점을 가진 LineGeometry 클래스의 새 인스턴스를 초기화합니다.

LineGeometry(Point, Point, Transform)

LineGeometry 클래스의 새 인스턴스를 초기화합니다.

LineGeometry()

길이가 없는 LineGeometry 클래스의 새 인스턴스를 초기화합니다.

public:
 LineGeometry();
public LineGeometry ();
Public Sub New ()

적용 대상

LineGeometry(Point, Point)

지정한 시작점과 끝점을 가진 LineGeometry 클래스의 새 인스턴스를 초기화합니다.

public:
 LineGeometry(System::Windows::Point startPoint, System::Windows::Point endPoint);
public LineGeometry (System.Windows.Point startPoint, System.Windows.Point endPoint);
new System.Windows.Media.LineGeometry : System.Windows.Point * System.Windows.Point -> System.Windows.Media.LineGeometry
Public Sub New (startPoint As Point, endPoint As Point)

매개 변수

startPoint
Point

선의 시작점입니다.

endPoint
Point

선의 끝점입니다.

추가 정보

적용 대상

LineGeometry(Point, Point, Transform)

LineGeometry 클래스의 새 인스턴스를 초기화합니다.

public:
 LineGeometry(System::Windows::Point startPoint, System::Windows::Point endPoint, System::Windows::Media::Transform ^ transform);
public LineGeometry (System.Windows.Point startPoint, System.Windows.Point endPoint, System.Windows.Media.Transform transform);
new System.Windows.Media.LineGeometry : System.Windows.Point * System.Windows.Point * System.Windows.Media.Transform -> System.Windows.Media.LineGeometry
Public Sub New (startPoint As Point, endPoint As Point, transform As Transform)

매개 변수

startPoint
Point

시작점입니다.

endPoint
Point

끝점입니다.

transform
Transform

선에 적용할 변환입니다.

추가 정보

적용 대상