DataGridViewCell.MouseEnterUnsharesRow(Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
마우스 포인터가 행의 셀 위로 이동할 경우 행을 공유하지 않을 것인지 여부를 나타냅니다.
protected:
virtual bool MouseEnterUnsharesRow(int rowIndex);
protected virtual bool MouseEnterUnsharesRow (int rowIndex);
abstract member MouseEnterUnsharesRow : int -> bool
override this.MouseEnterUnsharesRow : int -> bool
Protected Overridable Function MouseEnterUnsharesRow (rowIndex As Integer) As Boolean
매개 변수
- rowIndex
- Int32
셀의 부모 행의 인덱스입니다.
반환
행을 공유하지 않으면 true
이고, 그렇지 않으면 false
입니다. 기본 DataGridViewCell 클래스는 항상 false
를 반환합니다.
설명
메서드는 MouseEnterUnsharesRow 메서드 바로 앞에 호출됩니다 OnMouseEnter . 파생 클래스에서는 에 대한 호출 OnMouseEnter 이 셀을 포함하는 행의 공유를 해제하는 효과가 있는 경우 를 반환 true
해야 합니다. 그렇지 않으면 를 반환 false
해야 합니다.
행 공유에 대한 자세한 내용은 Windows Forms DataGridView 컨트롤의 크기를 조정하는 최선의 방법을 참조하세요.
적용 대상
추가 정보
- DataGridView
- MouseClickUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseDoubleClickUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseDownUnsharesRow(DataGridViewCellMouseEventArgs)
- OnMouseEnter(Int32)
- MouseLeaveUnsharesRow(Int32)
- MouseMoveUnsharesRow(DataGridViewCellMouseEventArgs)
- MouseUpUnsharesRow(DataGridViewCellMouseEventArgs)
- Windows Forms DataGridView 컨트롤의 크기 조정에 대한 모범 사례
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET