Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

This enumeration contains the values that specifies what sort of bounding box to use in comparisons or clipping for IInkDispobjects.

Syntax

enum InkBoundingBoxMode {
  IBBM_Default,
  IBBM_NoCurveFit,
  IBBM_CurveFit,
	IBBM_PointsOnly,
	IBBM_Union
};

Elements

IBBM_Default

Uses the definition of each stroke (polyline or Bezier) to calculate the bounding box; includes the drawing attributes, such as pen width, in the calculation.

IBBM_NoCurveFit

Uses the polyline of the strokes (ignoring Bezier curve fitting requests) to calculate the bounding box; includes the drawing attributes in the calculation.

IBBM_CurveFit

Uses the Bezier curve fitting line of the strokes (apply Bezier curve fitting to all strokes) to calculate the bounding box; includes the drawing attributes in the calculation.

IBBM_PointsOnly

Uses only the points of the strokes to calculate the bounding box.

IBBM_Union

Signifies the union of a NoCurveFit request and a CurveFit request.

Requirements

Header msinkaut.h
Windows Embedded CE Windows CE 5.0 and later
Windows Mobile Windows Mobile 6 Classic and later, Windows Mobile 6 Professional and later

See Also