PowerTools SPREAD for Windows Forms 8.0J
GetFilterBarHeaderRectangle メソッド (FpSpread)


列ヘッダの矩形を取得します。
構文
'Declaration
 
Public Function GetFilterBarHeaderRectangle() As Rectangle
'使用法
 
Dim instance As FpSpread
Dim value As Rectangle
 
value = instance.GetFilterBarHeaderRectangle()
public Rectangle GetFilterBarHeaderRectangle()

戻り値の型

フィルタバーヘッダの矩形。
次のサンプルコードは、GetFilterBarHeaderRectangleメソッドを使用します。
FarPoint.Win.Spread.SheetView sheetView = fpSpread1.ActiveSheet;
sheetView.AutoFilterMode = FarPoint.Win.Spread.AutoFilterMode.FilterBar;
sheetView.FilterBar.Cells[0].Border = new FarPoint.Win.DoubleLineBorder(Color.Red);
sheetView.FilterBar.Cells[0].BackColor = Color.GreenYellow;
sheetView.FilterBar.DefaultStyle.Border = new FarPoint.Win.DoubleLineBorder(Color.Yellow);
listBox1.Items.Add(fpSpread1.GetFilterBarHeaderRectangle().ToString());
Dim sheetView As FarPoint.Win.Spread.SheetView = FpSpread1.ActiveSheet
sheetView.AutoFilterMode = FarPoint.Win.Spread.AutoFilterMode.FilterBar
sheetView.FilterBar.Cells(0).Border = New FarPoint.Win.DoubleLineBorder(Color.Red)
sheetView.FilterBar.Cells(0).BackColor = Color.GreenYellow
sheetView.FilterBar.Cells(0).CellType = New FarPoint.Win.Spread.CellType.FilterBarCellType()
sheetView.FilterBar.DefaultStyle.Border = New FarPoint.Win.DoubleLineBorder(Color.Yellow)
ListBox1.Items.Add(FpSpread1.GetFilterBarHeaderRectangle().ToString())
参照

FpSpread クラス
FpSpread メンバ

 

 


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