XmlMappedRange.Address 속성
XmlMappedRange 컨트롤의 범위 참조를 가져옵니다.
네임스페이스: Microsoft.Office.Tools.Excel
어셈블리: Microsoft.Office.Tools.Excel(Microsoft.Office.Tools.Excel.dll)
구문
‘선언
ReadOnly Property Address As XmlMappedRange_AddressType
Get
XmlMappedRange_AddressType Address { get; }
속성 값
형식: Microsoft.Office.Tools.Excel.XmlMappedRange_AddressType
R1C1 스타일 또는 A1 스타일 표기법으로 된 XmlMappedRange 컨트롤의 범위 참조를 나타내는 문자열입니다.
설명
Address 속성은 다음 매개 변수에서 사용할 수 있습니다.
Parameter |
설명 |
---|---|
RowAbsolute |
행을 절대 참조로서 반환하는 경우 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다. |
ColumnAbsolute |
열을 절대 참조로서 반환하는 경우 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다. |
ReferenceStyle |
XlReferenceStyle 값 중 하나입니다. |
External |
외부 참조를 반환하는 경우 true이고, 지역 참조를 반환하는 경우 false입니다. 기본값은 false입니다. |
RelativeTo |
시작 지점을 정의하는 Range입니다. RowAbsolute와 ColumnAbsolute가 false이고 ReferenceStyle이 xlR1C1이면 상대 참조의 시작 지점을 포함해야 합니다. |
매개 변수를 지정하지 않고 Address를 사용하려고 하면 Address는 Visual Studio 인프라에서 Office 개발 도구에 속하며 사용자 코드에서 직접 사용할 수 없는 XmlMappedRange_AddressType 개체를 가져옵니다.
선택적 매개 변수
선택적 매개 변수에 대한 자세한 내용은 Office 솔루션의 선택적 매개 변수를 참조하십시오.
예제
다음 코드 예제에서는 Address 속성을 사용하여 XmlMappedRange의 범위 위치를 표시합니다. 이 예제에서는 ReferenceStyle, RowAbsolute, ColumnAbsolute 및 RelativeTo 매개 변수를 다양하게 조합하여 범위 위치를 네 가지 서식으로 표시합니다. 이 코드 예제에서는 현재 워크시트에 CustomerLastNameCell이라는 XmlMappedRange가 포함되어 있다고 가정합니다. CustomerLastNameCell이 셀 A2에 있다면 이 예제에서는 "$A$2", "$A2", "R2C2" 및 "R[-1]C[-1]"이라는 주소 문자열이 표시됩니다.
Private Sub DisplayAddress()
Me.Range("A1").Value2 = _
Me.CustomerLastNameCell.Address(True, True, _
Excel.XlReferenceStyle.xlA1, False)
Me.Range("A2").Value2 = _
Me.CustomerLastNameCell.Address(False, True, _
Excel.XlReferenceStyle.xlA1, False)
Me.Range("A3").Value2 = _
Me.CustomerLastNameCell.Address(True, True, _
Excel.XlReferenceStyle.xlR1C1, False)
Me.Range("A4").Value2 = _
Me.CustomerLastNameCell.Address(False, False, _
Excel.XlReferenceStyle.xlR1C1, False, Me.Cells(3, 3))
End Sub
private void DisplayAddress()
{
this.Range["A1", missing].Value2 =
this.CustomerLastNameCell.Address[true, true,
Excel.XlReferenceStyle.xlA1, false, missing];
this.Range["A2", missing].Value2 =
this.CustomerLastNameCell.Address[false, true,
Excel.XlReferenceStyle.xlA1, false, missing];
this.Range["A3", missing].Value2 =
this.CustomerLastNameCell.Address[true, true,
Excel.XlReferenceStyle.xlR1C1, false, missing];
this.Range["A4", missing].Value2 =
this.CustomerLastNameCell.Address[false, false,
Excel.XlReferenceStyle.xlR1C1, false, this.Cells[3, 3]];
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.