PowerTools SPREAD for Windows Forms 8.0J
FlipVertical プロパティ


シェイプが左右に反転しているかどうかを示す値を取得または設定します。
構文
'Declaration
 
Public Property FlipVertical As Boolean
'使用法
 
Dim instance As PSObject
Dim value As Boolean
 
instance.FlipVertical = value
 
value = instance.FlipVertical
public bool FlipVertical {get; set;}

プロパティ値

シェイプが左右に反転している場合はtrue、それ以外の場合はfalse
次のサンプルコードは、FlipHorizontal プロパティと FlipVertical プロパティを使用します。
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.FlipHorizontal = true;
test.FlipVertical = true;
FpSpread1.Sheets(0).Cells(0, 0).Text = "test"
Dim test As New FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape()
test.Formula = "A1:A5"
FpSpread1.Sheets(0).AddShape(test, 2, 1)
test.FlipHorizontal = True
test.FlipVertical = True
参照

PSObject クラス
PSObject メンバ

 

 


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