C# 클래스 Habanero.Faces.Base.TreeViewCancelEventArgs

Provides data for the TreeView.BeforeCheck, TreeView.BeforeCollapse, TreeView.BeforeExpand, and TreeView.BeforeSelect events of a TreeView control.
상속: CancelEventArgs
파일 보기 프로젝트 열기: Chillisoft/habanero.faces 1 사용 예제들

공개 메소드들

메소드 설명
TreeViewCancelEventArgs ( ITreeNode node, bool cancel, TreeViewAction action ) : System

Initializes a new instance of the TreeViewCancelEventArgs class with the specified tree node, a value specifying whether the event is to be canceled, and the type of tree view action that raised the event.

메소드 상세

TreeViewCancelEventArgs() 공개 메소드

Initializes a new instance of the TreeViewCancelEventArgs class with the specified tree node, a value specifying whether the event is to be canceled, and the type of tree view action that raised the event.
public TreeViewCancelEventArgs ( ITreeNode node, bool cancel, TreeViewAction action ) : System
node ITreeNode The TreeNode that the event is responding to.
cancel bool true to cancel the event; otherwise, false.
action TreeViewAction One of the TreeViewAction values indicating the type of action that raised the event.
리턴 System