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


オブジェクトの水平方向の倍率
オブジェクトの垂直方向の倍率
オブジェクトのサイズを、指定した量に従って調整します。
構文
'Declaration
 
Public Overloads Sub Scale( _
   ByVal scaleX As Single, _
   ByVal scaleY As Single _
) 
'使用法
 
Dim instance As PSObject
Dim scaleX As Single
Dim scaleY As Single
 
instance.Scale(scaleX, scaleY)
public void Scale( 
   float scaleX,
   float scaleY
)

パラメータ

scaleX
オブジェクトの水平方向の倍率
scaleY
オブジェクトの垂直方向の倍率
次のサンプルコードは、Scale メソッドを使用します。
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);
test.Scale(2, 2);
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)
test.Scale(2, 2)
参照

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

 

 


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