PathGradientBrush.ResetTransform 方法

定义

Transform 属性重置为标识。

public:
 void ResetTransform();
public void ResetTransform ();
member this.ResetTransform : unit -> unit
Public Sub ResetTransform ()

示例

下面的代码示例将 的 pgBrush 几何转换重置为标识。 假定 myPath 是现有的 GraphicsPath

PathGradientBrush pgBrush = new PathGradientBrush(myPath);
 pgBrush.ResetTransform();

适用于