XmlMappedRange.NumberFormatLocal 속성
사용자 언어로 된 XmlMappedRange 컨트롤의 서식 코드를 가져오거나 설정합니다.
네임스페이스: Microsoft.Office.Tools.Excel
어셈블리: Microsoft.Office.Tools.Excel(Microsoft.Office.Tools.Excel.dll)
구문
‘선언
Property NumberFormatLocal As Object
Get
Set
Object NumberFormatLocal { get; set; }
속성 값
형식: System.Object
사용자 언어로 된 XmlMappedRange 컨트롤의 서식 코드입니다.
설명
Format 함수에서는 NumberFormat 및 NumberFormatLocal 속성과는 다른 서식 코드 문자열을 사용합니다.
예제
다음 코드 예제에서는 NumberFormat 속성을 사용하여 XmlMappedRange의 날짜 문자열 서식을 지정합니다. 또한 이 예제에서는 NumberFormatLocal 속성을 사용하여 사용자 언어로 된 날짜 서식을 표시합니다. 이 코드 예제에서는 현재 워크시트에 CustomerDateCell이라는 XmlMappedRange가 포함되어 있다고 가정합니다.
Private Sub ApplyNumberFormatting()
Me.CustomerDateCell.Value2 = "4-Apr-1974"
Me.CustomerDateCell.NumberFormat = "m/d/yyyy"
' Display the number format in the language of the user.
MsgBox("The number format for CustomerDateCell is: " & _
Me.CustomerDateCell.NumberFormatLocal.ToString())
End Sub
private void ApplyNumberFormatting()
{
this.CustomerDateCell.Value2 = "4-Apr-1974";
this.CustomerDateCell.NumberFormat = "m/d/yyyy";
// Display the number format in the language of the user.
MessageBox.Show("The number format for CustomerDateCell is: " +
this.CustomerDateCell.NumberFormatLocal.ToString());
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.