LineSegment 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
LineSegment 클래스의 새 인스턴스를 초기화합니다.
오버로드
LineSegment() |
LineSegment 클래스의 새 인스턴스를 초기화합니다. |
LineSegment(Point, Boolean) |
지정된 끝 LineSegment 및 이 Point 를 그릴지 여부를 결정하는 부울이 있는 LineSegment 클래스의 새 인스턴스를 초기화합니다. |
LineSegment()
LineSegment 클래스의 새 인스턴스를 초기화합니다.
public:
LineSegment();
public LineSegment ();
Public Sub New ()
적용 대상
LineSegment(Point, Boolean)
지정된 끝 LineSegment 및 이 Point 를 그릴지 여부를 결정하는 부울이 있는 LineSegment 클래스의 새 인스턴스를 초기화합니다.
public:
LineSegment(System::Windows::Point point, bool isStroked);
public LineSegment (System.Windows.Point point, bool isStroked);
new System.Windows.Media.LineSegment : System.Windows.Point * bool -> System.Windows.Media.LineSegment
Public Sub New (point As Point, isStroked As Boolean)
매개 변수
- point
- Point
이 LineSegment의 끝점입니다.
- isStroked
- Boolean
이true
를 그리면 LineSegment이고, 그리지 않으면 false
입니다.