DataGridViewRowDividerDoubleClickEventArgs 클래스

정의

RowDividerDoubleClickDataGridView 이벤트에 데이터를 제공합니다.

public ref class DataGridViewRowDividerDoubleClickEventArgs : System::Windows::Forms::HandledMouseEventArgs
public class DataGridViewRowDividerDoubleClickEventArgs : System.Windows.Forms.HandledMouseEventArgs
type DataGridViewRowDividerDoubleClickEventArgs = class
    inherit HandledMouseEventArgs
Public Class DataGridViewRowDividerDoubleClickEventArgs
Inherits HandledMouseEventArgs
상속
DataGridViewRowDividerDoubleClickEventArgs

예제

다음 코드 예제에서는이 형식 사용 하는 방법을 보여 줍니다. 예제에서는 이벤트 처리기에서 보고서를 RowDividerDoubleClick 이벤트입니다. 이 보고서를 통해 이벤트 발생 하 고 도움이 될 수 있습니다 디버깅 하는 경우를 학습할 수 있습니다. 자주 발생 하는 이벤트 또는 여러 이벤트를 보고 하려면 바꾸는 것이 좋습니다 Show 사용 하 여 Console.WriteLine 줄에 메시지를 추가 또는 TextBox합니다.

예제 코드를 실행 하려면 형식의 인스턴스를 포함 하는 프로젝트에 붙여넣습니다 DataGridView 라는 DataGridView1합니다. 연결 된 이벤트 처리기는 확인 된 RowDividerDoubleClick 이벤트입니다.

private void DataGridView1_RowDividerDoubleClick(Object sender, DataGridViewRowDividerDoubleClickEventArgs e) {

System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "RowIndex", e.RowIndex );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Handled", e.Handled );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Button", e.Button );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Clicks", e.Clicks );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "X", e.X );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Y", e.Y );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Delta", e.Delta );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Location", e.Location );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "RowDividerDoubleClick Event" );
}
Private Sub DataGridView1_RowDividerDoubleClick(sender as Object, e as DataGridViewRowDividerDoubleClickEventArgs) _ 
     Handles DataGridView1.RowDividerDoubleClick

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "RowIndex", e.RowIndex)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Handled", e.Handled)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Button", e.Button)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Clicks", e.Clicks)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "X", e.X)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Y", e.Y)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Delta", e.Delta)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Location", e.Location)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"RowDividerDoubleClick Event")

End Sub

설명

이벤트를 처리 하는 방법에 대 한 자세한 내용은 참조 하세요. 이벤트 처리 및 발생합니다.

생성자

DataGridViewRowDividerDoubleClickEventArgs(Int32, HandledMouseEventArgs)

DataGridViewRowDividerDoubleClickEventArgs 클래스의 새 인스턴스를 초기화합니다.

속성

Button

누른 마우스 단추를 나타내는 값을 가져옵니다.

(다음에서 상속됨 MouseEventArgs)
Clicks

마우스 단추를 눌렀다 놓은 횟수를 가져옵니다.

(다음에서 상속됨 MouseEventArgs)
Delta

마우스 휠의 회전 수를 나타내는 부호 있는 숫자에 WHEEL_DELTA 상수를 곱한 값을 가져옵니다. 회전이란 마우스 휠을 한 번 돌리는 것입니다.

(다음에서 상속됨 MouseEventArgs)
Handled

컨트롤의 부모 컨테이너로 이 이벤트를 전달해야 하는지 여부를 가져오거나 설정합니다.

(다음에서 상속됨 HandledMouseEventArgs)
Location

마우스 이벤트를 생성하는 동안 마우스의 위치를 가져옵니다.

(다음에서 상속됨 MouseEventArgs)
RowIndex

두 번 클릭한 행 구분선 위에 있는 행의 인덱스입니다.

X

마우스 이벤트를 생성하는 동안 마우스의 x 좌표를 가져옵니다.

(다음에서 상속됨 MouseEventArgs)
Y

마우스 이벤트를 생성하는 동안 마우스의 y 좌표를 가져옵니다.

(다음에서 상속됨 MouseEventArgs)

메서드

Equals(Object)

지정된 개체가 현재 개체와 같은지 확인합니다.

(다음에서 상속됨 Object)
GetHashCode()

기본 해시 함수로 작동합니다.

(다음에서 상속됨 Object)
GetType()

현재 인스턴스의 Type을 가져옵니다.

(다음에서 상속됨 Object)
MemberwiseClone()

현재 Object의 단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)

적용 대상

추가 정보