PowerTools SPREAD for Windows Forms 8.0J
ChildControl プロパティ


イベントの子コントロールを取得します。
構文
'Declaration
 
Public ReadOnly Property ChildControl As Control
'使用法
 
Dim instance As ChildControlEventArgs
Dim value As Control
 
value = instance.ChildControl
public Control ChildControl {get;}
次のサンプル コードは、子コントロールが表示されていない場合、イベントをキャンセルします。
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
参照

ChildControlEventArgs クラス
ChildControlEventArgs メンバ

 

 


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