使用英语阅读

通过


Strokes.Scale 方法

在 X 和 Y 维度缩放 Strokes 集合。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Sub Scale ( _
    scaleX As Single, _
    scaleY As Single _
)
用法
Dim instance As Strokes
Dim scaleX As Single
Dim scaleY As Single

instance.Scale(scaleX, scaleY)
public void Scale(
    float scaleX,
    float scaleY
)
public:
void Scale(
    float scaleX, 
    float scaleY
)
public void Scale(
    float scaleX,
    float scaleY
)
public function Scale(
    scaleX : float, 
    scaleY : float
)

参数

  • scaleX
    类型:System.Single
    视图变换的 X 维度缩放因子。
  • scaleY
    类型:System.Single
    视图变换的 Y 维度缩放因子。

备注

不支持零行列式变换。这意味着,如果 Scale 方法有任一缩放因子设置为零,则不支持调用该方法。

示例

在此示例中,对 InkOverlay 对象的 Strokes 集合应用 X 维度缩放因子 2 和 Y 维度缩放因子 0.75。

' Access to the Strokes property returns a copy of the Strokes object.
' This copy must be implicitly (via using statement) or explicitly
' disposed of in order to avoid a memory leak.
Using allStrokes As Strokes = mInkOverlay.Ink.Strokes
    allStrokes.Scale(2.0F, 0.75F)
End Using
// Access to the Strokes property returns a copy of the Strokes object.
// This copy must be implicitly (via using statement) or explicitly
// disposed of in order to avoid a memory leak.
using (Strokes allStrokes = mInkOverlay.Ink.Strokes)
{
    allStrokes.Scale(2.0f, 0.75f);
}

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

Strokes 类

Strokes 成员

Microsoft.Ink 命名空间

Strokes.ScaleToRectangle

Strokes.Transform

Stroke.Scale