StylusPointCollection 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
StylusPointCollection 클래스의 새 인스턴스를 초기화합니다.
오버로드
StylusPointCollection() |
StylusPointCollection 클래스의 새 인스턴스를 초기화합니다. |
StylusPointCollection(IEnumerable<StylusPoint>) |
지정된 StylusPointCollection 개체를 사용하여 StylusPoint 클래스의 새 인스턴스를 초기화합니다. |
StylusPointCollection(IEnumerable<Point>) |
지정된 지점을 사용하여 StylusPointCollection 클래스의 새 인스턴스를 초기화합니다. |
StylusPointCollection(Int32) |
지정된 수의 StylusPointCollection 개체를 초기값으로 포함할 수 있는 StylusPoint 클래스의 새 인스턴스를 초기화합니다. |
StylusPointCollection(StylusPointDescription) |
StylusPointCollection에 지정된 속성을 포함하는 StylusPointDescription 클래스의 새 인스턴스를 초기화합니다. |
StylusPointCollection(StylusPointDescription, Int32) |
지정된 크기와 StylusPointCollection에 지정된 속성을 포함하는 StylusPointDescription 클래스의 새 인스턴스를 초기화합니다. |
StylusPointCollection()
StylusPointCollection 클래스의 새 인스턴스를 초기화합니다.
public:
StylusPointCollection();
public StylusPointCollection ();
Public Sub New ()
예제
다음 예제에서는 수집 StylusPoint 개체는 OnStylusDown 사용자 지정 컨트롤의 메서드. 이 예에서는 만듭니다는 StylusPointCollection 지정 하 여는 StylusPointDescription 의 초기 크기를 StylusPointCollection.
StylusPointCollection stylusPoints;
protected override void OnStylusDown(StylusDownEventArgs e)
{
base.OnStylusDown(e);
StylusPointCollection eventPoints = e.GetStylusPoints(this);
// Create a new StylusPointCollection using the StylusPointDescription
// from the stylus points in the StylusDownEventArgs.
stylusPoints = new StylusPointCollection(eventPoints.Description, eventPoints.Count);
stylusPoints.Add(eventPoints);
}
Private stylusPoints As StylusPointCollection
Protected Overrides Sub OnStylusDown(ByVal e As StylusDownEventArgs)
MyBase.OnStylusDown(e)
Dim eventPoints As StylusPointCollection = e.GetStylusPoints(Me)
' Create a new StylusPointCollection using the StylusPointDescription
' from the stylus points in the StylusDownEventArgs.
stylusPoints = New StylusPointCollection(eventPoints.Description, eventPoints.Count)
stylusPoints.Add(eventPoints)
End Sub
적용 대상
StylusPointCollection(IEnumerable<StylusPoint>)
지정된 StylusPointCollection 개체를 사용하여 StylusPoint 클래스의 새 인스턴스를 초기화합니다.
public:
StylusPointCollection(System::Collections::Generic::IEnumerable<System::Windows::Input::StylusPoint> ^ stylusPoints);
public StylusPointCollection (System.Collections.Generic.IEnumerable<System.Windows.Input.StylusPoint> stylusPoints);
new System.Windows.Input.StylusPointCollection : seq<System.Windows.Input.StylusPoint> -> System.Windows.Input.StylusPointCollection
Public Sub New (stylusPoints As IEnumerable(Of StylusPoint))
매개 변수
- stylusPoints
- IEnumerable<StylusPoint>
StylusPoint에 추가할 StylusPointCollection 형식의 제네릭 IEnumerable입니다.
예외
stylusPoints
이(가) null
인 경우
예제
다음 예제에서는 StylusPointCollection합니다.
StylusPoint stylusPoint1 = new StylusPoint(100, 100, .5f);
StylusPoint stylusPoint2 = new StylusPoint(200, 200, .35f);
StylusPointCollection points = new StylusPointCollection(
new StylusPoint[] { stylusPoint1, stylusPoint2 });
Dim stylusPoint1 As New StylusPoint(100, 100, 0.5F)
Dim stylusPoint2 As New StylusPoint(200, 200, 0.35F)
Dim points As New StylusPointCollection(New StylusPoint() {stylusPoint1, stylusPoint2})
적용 대상
StylusPointCollection(IEnumerable<Point>)
지정된 지점을 사용하여 StylusPointCollection 클래스의 새 인스턴스를 초기화합니다.
public:
StylusPointCollection(System::Collections::Generic::IEnumerable<System::Windows::Point> ^ points);
public StylusPointCollection (System.Collections.Generic.IEnumerable<System.Windows.Point> points);
new System.Windows.Input.StylusPointCollection : seq<System.Windows.Point> -> System.Windows.Input.StylusPointCollection
Public Sub New (points As IEnumerable(Of Point))
매개 변수
- points
- IEnumerable<Point>
Point에 추가할 StylusPoint 개체를 지정하는 StylusPointCollection 형식의 제네릭 IEnumerable입니다.
예외
points
이(가) null
인 경우
points
의 길이가 0입니다.
예제
다음 예제에서는 StylusPointCollection합니다.
StylusPointCollection points = new StylusPointCollection(new Point[]
{
new Point(100, 100),
new Point(100, 200),
new Point(200, 250),
new Point(300, 300)
});
Dim points As New StylusPointCollection(New Point() _
{New Point(100, 100), _
New Point(100, 200), _
New Point(200, 250), _
New Point(300, 300)})
적용 대상
StylusPointCollection(Int32)
지정된 수의 StylusPointCollection 개체를 초기값으로 포함할 수 있는 StylusPoint 클래스의 새 인스턴스를 초기화합니다.
public:
StylusPointCollection(int initialCapacity);
public StylusPointCollection (int initialCapacity);
new System.Windows.Input.StylusPointCollection : int -> System.Windows.Input.StylusPointCollection
Public Sub New (initialCapacity As Integer)
매개 변수
- initialCapacity
- Int32
초기값으로 StylusPoint에 포함할 수 있는 StylusPointCollection 개체 수입니다.
예외
initialCapacity
가 음수입니다.
예제
다음 예제에서는 수집 StylusPoint 개체는 OnStylusDown 사용자 지정 컨트롤의 메서드. 이 예에서는 만듭니다는 StylusPointCollection 둘 다 지정 하 여는 StylusPointDescription 의 초기 크기를 StylusPointCollection.
StylusPointCollection stylusPoints;
protected override void OnStylusDown(StylusDownEventArgs e)
{
base.OnStylusDown(e);
StylusPointCollection eventPoints = e.GetStylusPoints(this);
// Create a new StylusPointCollection using the StylusPointDescription
// from the stylus points in the StylusDownEventArgs.
stylusPoints = new StylusPointCollection(eventPoints.Description, eventPoints.Count);
stylusPoints.Add(eventPoints);
}
Private stylusPoints As StylusPointCollection
Protected Overrides Sub OnStylusDown(ByVal e As StylusDownEventArgs)
MyBase.OnStylusDown(e)
Dim eventPoints As StylusPointCollection = e.GetStylusPoints(Me)
' Create a new StylusPointCollection using the StylusPointDescription
' from the stylus points in the StylusDownEventArgs.
stylusPoints = New StylusPointCollection(eventPoints.Description, eventPoints.Count)
stylusPoints.Add(eventPoints)
End Sub
설명
사용 하는 경우는 StylusPointCollection 새 생성자 StylusPointCollection를 지정 합니다 initialCapacity
합니다. 그러나 더 추가할 수 있습니다 StylusPoint 를 호출 하 여 개체를 Add 메서드.
적용 대상
StylusPointCollection(StylusPointDescription)
StylusPointCollection에 지정된 속성을 포함하는 StylusPointDescription 클래스의 새 인스턴스를 초기화합니다.
public:
StylusPointCollection(System::Windows::Input::StylusPointDescription ^ stylusPointDescription);
public StylusPointCollection (System.Windows.Input.StylusPointDescription stylusPointDescription);
new System.Windows.Input.StylusPointCollection : System.Windows.Input.StylusPointDescription -> System.Windows.Input.StylusPointCollection
Public Sub New (stylusPointDescription As StylusPointDescription)
매개 변수
- stylusPointDescription
- StylusPointDescription
각 StylusPointDescription에 저장된 추가 속성을 지정하는 StylusPoint입니다.
예외
stylusPointDescription
이(가) null
인 경우
예제
다음 예제에서는 수집 StylusPoint 개체는 OnStylusDown 사용자 지정 컨트롤의 메서드. 이 예에서는 만듭니다는 StylusPointCollection 지정 하 여는 StylusPointDescription 의 초기 크기를 StylusPointCollection.
StylusPointCollection stylusPoints;
protected override void OnStylusDown(StylusDownEventArgs e)
{
base.OnStylusDown(e);
StylusPointCollection eventPoints = e.GetStylusPoints(this);
// Create a new StylusPointCollection using the StylusPointDescription
// from the stylus points in the StylusDownEventArgs.
stylusPoints = new StylusPointCollection(eventPoints.Description, eventPoints.Count);
stylusPoints.Add(eventPoints);
}
Private stylusPoints As StylusPointCollection
Protected Overrides Sub OnStylusDown(ByVal e As StylusDownEventArgs)
MyBase.OnStylusDown(e)
Dim eventPoints As StylusPointCollection = e.GetStylusPoints(Me)
' Create a new StylusPointCollection using the StylusPointDescription
' from the stylus points in the StylusDownEventArgs.
stylusPoints = New StylusPointCollection(eventPoints.Description, eventPoints.Count)
stylusPoints.Add(eventPoints)
End Sub
설명
모든 StylusPoint 에 추가 된 개체를 StylusPointCollection 있어야를 StylusPointDescription 와 호환 되는 stylusPointDescription
합니다.
적용 대상
StylusPointCollection(StylusPointDescription, Int32)
지정된 크기와 StylusPointCollection에 지정된 속성을 포함하는 StylusPointDescription 클래스의 새 인스턴스를 초기화합니다.
public:
StylusPointCollection(System::Windows::Input::StylusPointDescription ^ stylusPointDescription, int initialCapacity);
public StylusPointCollection (System.Windows.Input.StylusPointDescription stylusPointDescription, int initialCapacity);
new System.Windows.Input.StylusPointCollection : System.Windows.Input.StylusPointDescription * int -> System.Windows.Input.StylusPointCollection
Public Sub New (stylusPointDescription As StylusPointDescription, initialCapacity As Integer)
매개 변수
- stylusPointDescription
- StylusPointDescription
각 StylusPointDescription에 저장된 추가 속성을 지정하는 StylusPoint입니다.
- initialCapacity
- Int32
초기값으로 StylusPoint에 포함할 수 있는 StylusPointCollection 개체 수입니다.
예외
initialCapacity
가 음수입니다.
stylusPointDescription
이(가) null
인 경우
예제
다음 예제에서는 수집 StylusPoint 개체는 OnStylusDown 사용자 지정 컨트롤의 메서드. 이 예에서는 만듭니다는 StylusPointCollection 지정 하 여는 StylusPointDescription 의 초기 크기를 StylusPointCollection.
StylusPointCollection stylusPoints;
protected override void OnStylusDown(StylusDownEventArgs e)
{
base.OnStylusDown(e);
StylusPointCollection eventPoints = e.GetStylusPoints(this);
// Create a new StylusPointCollection using the StylusPointDescription
// from the stylus points in the StylusDownEventArgs.
stylusPoints = new StylusPointCollection(eventPoints.Description, eventPoints.Count);
stylusPoints.Add(eventPoints);
}
Private stylusPoints As StylusPointCollection
Protected Overrides Sub OnStylusDown(ByVal e As StylusDownEventArgs)
MyBase.OnStylusDown(e)
Dim eventPoints As StylusPointCollection = e.GetStylusPoints(Me)
' Create a new StylusPointCollection using the StylusPointDescription
' from the stylus points in the StylusDownEventArgs.
stylusPoints = New StylusPointCollection(eventPoints.Description, eventPoints.Count)
stylusPoints.Add(eventPoints)
End Sub
설명
사용 하는 경우는 StylusPointCollection 새 생성자 StylusPointCollection의 StylusPointCollection 의 지정 된 수를 보유 하는 용량을 사용 하 여 만든 StylusPoint 개체입니다. 더 추가할 수 있습니다 StylusPoint 개체 보다 initialCapacity
를 호출 하 여는 Add 메서드.
적용 대상
.NET