MESCIUS SPREAD for Windows Forms 15.0J
FlipVertical プロパティ (PSObject)
使用例 

シェイプが左右に反転しているかどうかを示す値を取得または設定します。
構文
'宣言
 
Public Property FlipVertical As Boolean
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 メンバ

 

 


© MESCIUS inc. All rights reserved.