Renderer.GetObjectTransform 方法
标识 Matrix 对象,该对象表示用于呈现墨迹 的对象变换。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public Sub GetObjectTransform ( _
ByRef objectTransform As Matrix _
)
用法
Dim instance As Renderer
Dim objectTransform As Matrix
instance.GetObjectTransform(objectTransform)
public void GetObjectTransform(
ref Matrix objectTransform
)
public:
void GetObjectTransform(
Matrix^% objectTransform
)
public void GetObjectTransform(
/** @ref */Matrix objectTransform
)
public function GetObjectTransform(
objectTransform : Matrix
)
参数
- objectTransform
类型:System.Drawing.Drawing2D.Matrix%
Matrix 对象,该对象表示用于变换墨迹空间 中的笔画坐标的几何变换值(旋转、缩放、修剪和反射)。
备注
变换应用于点,但不应用于笔宽度。
先发生对象变换,后发生视图变换。
示例
在此示例中,GetObjectTransform 用于从 InkOverlay 对象中的 Renderer 对象获取当前对象变换矩阵。然后在 X 和 Y 维度中应用缩放因子 2。因为 false 传递到 applyOnPenWidth 参数,所以墨迹的宽度不缩放。最后,使用 SetObjectTransform 方法还原原始对象变换。
' create a Matrix object and obtain the current object transform
Dim origObjectTransform As Matrix = New Matrix()
mInkOverlay.Renderer.GetObjectTransform(origObjectTransform)
' scale the ink (without scaling the ink width)- this affects the object transform
mInkOverlay.Renderer.Scale(2.0F, 2.0F, False)
' later, you can restore the object transform back to the original
mInkOverlay.Renderer.SetObjectTransform(origObjectTransform)
// create a Matrix object and obtain the current object transform
Matrix origObjectTransform = new Matrix();
mInkOverlay.Renderer.GetObjectTransform(ref origObjectTransform);
// scale the ink (without scaling the ink width)- this affects the object transform
mInkOverlay.Renderer.Scale(2.0f, 2.0f, false);
// later, you can restore the object transform back to the original
mInkOverlay.Renderer.SetObjectTransform(origObjectTransform);
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0