FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > HeaderHitTestInformation クラス : InColumnResize プロパティ |
'Declaration Public ReadOnly Property InColumnResize As Boolean
'使用法 Dim instance As HeaderHitTestInformation Dim value As Boolean value = instance.InColumnResize
public bool InColumnResize {get;}
private void fpSpread1MouseUpClick(object sender, MouseEventArgs e) { FarPoint.Win.Spread.HitTestInformation hti; FarPoint.Win.Spread.HeaderHitTestInformation hi; hti = fpSpread1.HitTest(e.X, e.Y); hi = hti.HeaderInfo; if (hti.Type == HitTestType.ColumnHeader) { MessageBox.Show(hi.InColumnResize.ToString()); } }
private void fpSpread1MouseUpClick(object sender, MouseEventArgs e) { FarPoint.Win.Spread.HitTestInformation hti; FarPoint.Win.Spread.HeaderHitTestInformation hi; hti = fpSpread1.HitTest(e.X, e.Y); hi = hti.HeaderInfo; if (hti.Type == HitTestType.ColumnHeader) { MessageBox.Show(hi.InColumnResize.ToString()); } }