Поделиться через


Renderer.Measure - метод (Strokes)

Обновлен: Ноябрь 2007

Calculates the Rectangle on the device context needed to contain the Strokes collection to be drawn with the Draw method of the Renderer object.

Пространство имен:  Microsoft.Ink
Сборка:  Microsoft.Ink (в Microsoft.Ink.dll)

Синтаксис

'Декларация
Public Function Measure ( _
    strokes As Strokes _
) As Rectangle
'Применение
Dim instance As Renderer
Dim strokes As Strokes
Dim returnValue As Rectangle

returnValue = instance.Measure(strokes)
public Rectangle Measure(
    Strokes strokes
)
public:
Rectangle Measure(
    Strokes^ strokes
)
public Rectangle Measure(
    Strokes strokes
)
public function Measure(
    strokes : Strokes
) : Rectangle

Параметры

Возвращаемое значение

Тип: System.Drawing.Rectangle
The Rectangle on the device context needed to contain the
strokes if the strokes were drawn with the Draw method of the Renderer object. The strokes must contain x-coordinates and y-coordinates to calculate the rectangle. Otherwise, the method returns an empty rectangle.

Заметки

This method is accurate only if you pass the same arguments to both the Measure and Draw methods.

Because the bounding box is affected by the pen width, this width is scaled appropriately for the Renderer object's view transform. To do this, the pen width is multiplied by the square root of the determinant of the view transform. The height and width of the bounding box are expanded by half this amount in each direction, and the right and bottom sides are incremented by one.

For example, consider that the pen width is originally 53, the square root of the determinant of the view transform is 50, and the bounding box is (0, 0, 1000, 1000). The pen width adjustment to the bounding box in each direction is calculated as (53 * 50) / 2, and the right and bottom sides are incremented by one. This results in a rendered bounding box of (-1325, -1325, 2326, 2326).

Примеры

This C# example gets the bounding rectangle for the Strokes collection in the InkCollector object, theInkCollector.

Rectangle theMeasure = theInkCollector.Renderer.Measure(theInkCollector.Ink.Strokes);

This Microsoft® Visual Basic® .NET example gets the bounding rectangle for the Strokes collection in the InkCollector object, theInkCollector.

Dim theMeasure As Rectangle = theInkCollector.Renderer.Measure(theInkCollector.Ink.Strokes)

Платформы

Windows Vista

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

Renderer Класс

Renderer - члены

Measure - перегрузка

Microsoft.Ink - пространство имен

Renderer.Draw

Stroke.GetBoundingBox

Strokes.GetBoundingBox

DrawingAttributes