BoundingBoxMode Enumeration

BoundingBoxMode Enumeration

Specifies which characteristics of a stroke, such as drawing attributes, are used to calculate the bounding box of the ink.

Definition

Visual Basic .NET Public Enum BoundingBoxMode
C# public enum BoundingBoxMode
Managed C++ __value public enum BoundingBoxMode

Constants

Constant Name Description
Default Use the definition of each stroke.
NoCurveFit Use the polyline of the strokes.
CurveFit Use the Bezier curve fitting line of the strokes.
PointsOnly Use only the points of the strokes.
Union The union of NoCurveFit and CurveFit request.

Remarks

The bounding box is the smallest rectangle that includes all points in the Ink object. The size of the rectangle varies depending on whether you use drawing attributes, Bezier curve fitting, or just the points of the stroke to calculate the rectangle.

Enumeration Information

Namespace Microsoft.Ink
Assembly Microsoft.Ink (microsoft.ink.dll)
Strong Name Microsoft.Ink, Version=1.7.4009.0, Culture=neutral, PublicKeyToken=a2870d9cc4d021c8

See Also