ICanvas.Rotate 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Rotate(Single) |
在画布左上角(0,0)周围旋转图形对象。 |
Rotate(Single, Single, Single) |
围绕点旋转图形对象。 |
Rotate(Single)
- Source:
- ICanvas.cs
- Source:
- ICanvas.cs
在画布左上角(0,0)周围旋转图形对象。
public:
void Rotate(float degrees);
public void Rotate (float degrees);
abstract member Rotate : single -> unit
Public Sub Rotate (degrees As Single)
参数
- degrees
- Single
注解
将顺时针旋转以增加角度。 允许负角和大于 360 的角度。
适用于
Rotate(Single, Single, Single)
- Source:
- ICanvas.cs
- Source:
- ICanvas.cs
围绕点旋转图形对象。
public:
void Rotate(float degrees, float x, float y);
public void Rotate (float degrees, float x, float y);
abstract member Rotate : single * single * single -> unit
Public Sub Rotate (degrees As Single, x As Single, y As Single)
参数
- degrees
- Single
旋转角度。
- x
- Single
x
旋转点的坐标。
- y
- Single
y
旋转点的坐标。
注解
将顺时针旋转以增加角度。 允许负角和大于 360 的角度。