StrokeIntersection.StrokeIntersection Constructor

StrokeIntersection.StrokeIntersection Constructor

Creates a StrokeIntersection structure from the start and end indices.

Definition

Visual Basic .NET Public Sub StrokeIntersection( _
ByVal beginIndex As Single, _
ByVal endIndex As Single _
)
C# public StrokeIntersection(
float beginIndex,
float endIndex
);
Managed C++ public: StrokeIntersection(
float *beginIndex,
float *endIndex
);

Parameters

beginIndex System.Single. [in] The start of the stroke intersection as a floating point index.
endIndex System.Single. [in] The end the stroke intersection as a floating point index.

Examples

[C#]

This C# example declares and creates a StrokeIntersection structure.

StrokeIntersection theStrokeIntersection = new StrokeIntersection(start, end);

[Visual Basic .NET]

This C# example declares and creates a StrokeIntersection structure.

Dim theStrokeIntersection As New StrokeIntersection(start, end)