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 系统要求。
受以下版本支持:3.0