Month 函数 (Visual Basic)
更新:2007 年 11 月
返回一个 Integer 值,范围为 1 到 12,表示一年中的月份。
Public Function Month(ByVal DateValue As DateTime) As Integer
参数
- DateValue
必选。所要从中提取月份的 Date 值。
备注
您也可以通过调用 DatePart 和为 Interval 参数指定 DateInterval.Month 来获取一年中的月份。
示例
本示例使用 Month 函数获取指定日期中的月份。在开发环境中,使用代码的区域设置以短日期格式显示日期。
Dim thisDate As Date
Dim thisMonth As Integer
thisDate = #2/12/1969#
thisMonth = Month(thisDate)
' thisMonth now contains 2.
要求
**模块:**DateAndTime
**程序集:**Visual Basic 运行库(在 Microsoft.VisualBasic.dll 中)