Name
DatePart Function
Class
Microsoft.VisualBasic.DateAndTime
Syntax
DatePart(interval, datevalue[,firstdayofweekvalue[, _
firstweekofyearvalue]]
)
-
interval
Use: Required
Data Type: String or a member of the
DateInterval
enumA String literal (see the second item in Section ) or a constant of the
DateInterval
enum (see the third item in Section ) that defines the part of the date/time to extract fromdatevalue
-
datevalue
Use: Required
Data Type: Date, literal date, or an expression capable of conversion to a date
The Date value to evaluate
-
firstdayofweekvalue
Use: Optional
Data Type:
FirstDayOfWeek
enumA member of the
FirstDayOfWeek
enum-
firstweekofyearvalue
Use: Optional
Data Type:
FirstWeekOfYear
enumA member of the
FirstWeekOfYear
enum
Return Value
An Integer containing the specified part
Description
Extracts an individual component of the date or time (like the month or the second) from a date/time value
Rules at a Glance
The
DatePart
function returns an Integer containing the specified portion of the given date.DatePart
is a single function encapsulating the individualYear
,Month
,Day
,Hour
,Minute
, andSecond
functions.interval
can be one of the following literal strings:
String |
Description |
---|---|
|
Year |
|
Quarter |
|
Month |
|
Day of year |
|
Day |
|
Weekday |
|
Week |
|
Hour |
|
Minute |
|
Second |
interval
can also be a member of theDateInterval
enum:Enum DateInterval Day DayOfYear Hour Minute Month Quarter Second Week Weekday WeekOfYear End Enum
The
firstdayofweekvalue ...
Get VB .NET Language in a Nutshell now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.