다음을 통해 공유


Calendar.VisibleDate 속성

정의

표시할 월을 지정하는 날짜를 가져오거나 설정합니다. 이 API는 더 이상 사용되지 않습니다. ASP.NET 모바일 애플리케이션을 개발하는 방법에 대한 자세한 내용은 ASP.NET 있는 Mobile Apps & 사이트를 참조하세요.

public:
 property DateTime VisibleDate { DateTime get(); void set(DateTime value); };
[System.ComponentModel.Bindable(true)]
public DateTime VisibleDate { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.VisibleDate : DateTime with get, set
Public Property VisibleDate As DateTime

속성 값

표시할 월을 지정하는 날짜입니다. 기본값은 DateTime.MinValue입니다.

특성

예제

다음 코드 예제를 사용 VisibleDate 하는 방법에 설명 합니다 달력에 표시 날짜를 설정 하는 속성입니다. 이 예제는 개요에 대한 더 큰 코드 샘플의 Calendar 일부입니다.

int currentDay = Calendar1.VisibleDate.Day;
int currentMonth = Calendar1.VisibleDate.Month;
int currentYear = Calendar1.VisibleDate.Year;
Dim currentDay As Integer = Calendar1.VisibleDate.Day
Dim currentMonth As Integer = Calendar1.VisibleDate.Month
Dim currentYear As Integer = Calendar1.VisibleDate.Year

설명

VisibleDate 이벤트가 발생한 후 속성이 Calendar.VisibleMonthChanged 업데이트됩니다.

날짜는 해당 월 내의 어느 날일 수도 있습니다. 개체의 DateTime 월 값만 사용됩니다.

이 속성에는 Web Forms Calendar.VisibleDate 속성과 동일한 기능이 있습니다.

적용 대상

추가 정보