PowerTools SPREAD for Windows Forms 8.0J
Rotate(Single) メソッド


オブジェクトを回転する角度
オブジェクトの中心点を中心として、オブジェクトを指定した角度回転します。
構文
'Declaration
 
Public Overloads Overridable Sub Rotate( _
   ByVal angle As Single _
) 
'使用法
 
Dim instance As PSObject
Dim angle As Single
 
instance.Rotate(angle)
public virtual void Rotate( 
   float angle
)

パラメータ

angle
オブジェクトを回転する角度
次のサンプルコードは、Rotate メソッドを使用します。
fpSpread1.Sheets[0].Cells[0, 0].Text = "test";
FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape test = new FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape();
test.Formula = "A1:A5";
fpSpread1.Sheets[0].AddShape(test, 2, 1);           
//Rotates the object by the specified angle around the center of the object.
test.Rotate(120);
FpSpread1.Sheets(0).Cells(0, 0).Text = "test"
Dim test As New FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape()
test.Formula = "A1:A5"
test.Name = "rangeimage"
FpSpread1.Sheets(0).AddShape(test, 2, 1)
'Rotates the object by the specified angle around the center of the object.
test.Rotate(120)
参照

PSObject クラス
PSObject メンバ
オーバーロード一覧

 

 


© 2004-2015, GrapeCity inc. All rights reserved.