Calendar.VisibleDate 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
표시할 월을 지정하는 날짜를 가져오거나 설정합니다. 이 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 속성과 동일한 기능이 있습니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET