NamedRange.Rows 속성
NamedRange 컨트롤에 있는 하나 이상의 행을 나타내는 Microsoft.Office.Interop.Excel.Range를 가져옵니다.
네임스페이스: Microsoft.Office.Tools.Excel
어셈블리: Microsoft.Office.Tools.Excel(Microsoft.Office.Tools.Excel.dll)
구문
‘선언
ReadOnly Property Rows As Range
Range Rows { get; }
속성 값
형식: Microsoft.Office.Interop.Excel.Range
NamedRange 컨트롤에 있는 하나 이상의 행을 나타내는 Microsoft.Office.Interop.Excel.Range입니다.
설명
매개 변수 없이 사용되면 이 속성은 명명된 범위에 있는 모든 행을 포함하는 Range 개체를 반환합니다.
이 속성은 명명된 범위의 특정 행을 가져오기 위해 다음 선택적 매개 변수에 사용할 수 있습니다.매개 변수가 있는 이 속성을 사용하는 경우 반환 값은 Range에 캐스팅해야 하는 개체입니다.
Parameter |
설명 |
---|---|
RowIndex |
가져올 하나 이상의 행의 인덱스입니다. 단일 행을 가져오려면 가져올 행의 인덱스를 지정하는 정수를 전달합니다.행 인덱스는 1부터 시작합니다. 인접한 여러 열을 가져오려면 "first row:last row" 형식의 문자열을 전달합니다.예를 들어, 1-5 행을 가져오려면 "1:5"를 전달하십시오. |
ColumnIndex |
이 매개 변수를 사용하지 마십시오.이 매개 변수에 값을 전달하는 경우 이 속성은 COMException를 throw합니다. |
예제
다음 코드 예제에서는 NamedRange를 만든 후 Rows 속성을 사용하여 범위의 처음 다섯 행에 있는 모든 셀의 색, 이름, 크기 및 글꼴 굵기를 설정합니다.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.이 코드를 실행하려면 프로젝트의 워크시트 클래스 중 하나로 복사합니다.
Private Sub SetRowsFont()
Dim testRange As Microsoft.Office.Tools.Excel.NamedRange = _
Me.Controls.AddNamedRange(Me.Range("A1", "J10"), _
"TestRange")
testRange.Select()
Dim fillRows As Excel.Range = TryCast(testRange.Rows("1:5"), Excel.Range)
With fillRows.Font
' Set the font color to blue (RGB value 00 00 FF), and set other font properties.
.Color = &HFF0000
.Name = "Arial"
.Size = 14
.Bold = False
End With
' Test the changes by writing a value to all the row cells.
fillRows.Value2 = "This is a test"
End Sub
private void SetRowsFont()
{
Microsoft.Office.Tools.Excel.NamedRange testRange =
this.Controls.AddNamedRange(this.Range["A1", "J10"],
"TestRange");
testRange.Select();
Excel.Range fillRows = (Excel.Range)testRange.Rows["1:5"];
Excel.Font rowsFont = fillRows.Font;
// Set the font color to blue (RGB value 00 00 FF), and set other font properties.
rowsFont.Color = 0xFF0000;
rowsFont.Name = "Arial";
rowsFont.Size = 14;
rowsFont.Bold = false;
// Test the changes by writing a value to all the row cells.
fillRows.Value2 = "This is a test";
}
다음 코드 예제에서는 NamedRange를 만든 후 Rows 속성을 사용하여 범위에 있는 행 수를 확인합니다.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.이 코드를 실행하려면 프로젝트의 워크시트 클래스 중 하나로 복사합니다.
Private compositeRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub DisplayRangeComposition()
compositeRange = Me.Controls.AddNamedRange( _
Me.Range("B2", "E5"), "compositeRange")
compositeRange.Cells.Interior.Color = &HFF00
MessageBox.Show("The range has " & _
compositeRange.Count & " cells.")
MessageBox.Show("The range has " & _
compositeRange.Columns.Count & " columns.")
MessageBox.Show("The range has " & _
compositeRange.Rows.Count & " rows.")
End Sub
Microsoft.Office.Tools.Excel.NamedRange compositeRange;
private void DisplayRangeComposition()
{
compositeRange = this.Controls.AddNamedRange(
this.Range["B2", "E5"], "compositeRange");
compositeRange.Cells.Interior.Color = 0xFF00;
MessageBox.Show("The range has " + compositeRange.Count +
" cells.");
MessageBox.Show("The range has " +
compositeRange.Columns.Count + " columns.");
MessageBox.Show("The range has " +
compositeRange.Rows.Count + " rows.");
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.