FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > ChildControlEventArgs クラス : Cancel プロパティ |
'Declaration Public Property Cancel As Boolean
'使用法 Dim instance As ChildControlEventArgs Dim value As Boolean instance.Cancel = value value = instance.Cancel
public bool Cancel {get; set;}
private void fpSpread1ChildControlActivated(object sender, FarPoint.Win.Spread.ChildControlEventArgs e) { if (e.ChildControl.Visible == false) { e.Cancel = true; } }
Private Sub FpSpread1ChildControlActivated(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.ChildControlEventArgs) If e.ChildControl.Visible = False Then e.Cancel = True End If End Sub