DataGridView.GetCellDisplayRectangle(Int32, Int32, Boolean) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
셀의 표시 영역을 나타내는 사각형을 반환합니다.
public:
System::Drawing::Rectangle GetCellDisplayRectangle(int columnIndex, int rowIndex, bool cutOverflow);
public System.Drawing.Rectangle GetCellDisplayRectangle (int columnIndex, int rowIndex, bool cutOverflow);
member this.GetCellDisplayRectangle : int * int * bool -> System.Drawing.Rectangle
Public Function GetCellDisplayRectangle (columnIndex As Integer, rowIndex As Integer, cutOverflow As Boolean) As Rectangle
매개 변수
- columnIndex
- Int32
원하는 셀의 열 인덱스입니다.
- rowIndex
- Int32
원하는 셀의 행 인덱스입니다.
- cutOverflow
- Boolean
셀의 표시된 부분만을 반환하려면 true
이고 전체 셀 범위를 반환하려면 false
입니다.
반환
셀의 표시 사각형을 나타내는 Rectangle입니다.
예외
columnIndex
가 -1보다 작거나 컨트롤의 열 수에서 1을 뺀 값보다 큰 경우
또는
rowIndex
가 -1보다 작거나 컨트롤의 행 수에서 1을 뺀 값보다 큰 경우
설명
이 메서드는 전체 셀 범위 또는 표시된 부분만 반환합니다. 셀 내용의 범위만 얻으려면 셀 ContentBounds 속성을 사용합니다.