FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.DrawingSpace 名前空間 > PSObject クラス : 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
。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