Description
Sets the text value of a PBDOM_ATTRIBUTE object and creates this text value by serializing the provided datetime value into a string.
Syntax
pbdom_attribute_name.SetDateTimeValue(datetime datetimeValue, string strDateFormat, string strTimeFormat)
Argument |
Description |
---|---|
pbdom_attribute_name |
The name of the PBDOM_ATTRIBUTE |
datetimeValue |
A datetime value to be set for the PBDOM_ATTRIBUTE |
strDateFormat |
The format in which the date part of the datetime value is to be set for the PBDOM_ATTRIBUTE, for example, MM:DD:YYYY |
strTimeFormat |
The format in which the time part of the datetime value is to be set for the PBDOM_ATTRIBUTE, for example, HH:MM:SS |
The value of the strDateFormat parameter can use slashes or colons as delimiters. The following table illustrates characters that have special meaning in strDateFormat.
Character |
Meaning |
Example |
---|---|---|
D |
Day number with no leading zero |
5 |
DD |
Day number with leading zero, if applicable |
05 |
M |
Month number with no leading zero |
5 |
MM |
Month number with leading zero, if applicable |
05 |
YY |
Two-digit year number |
05 |
YYYY |
Four-digit year number |
2005 |
The value of the strTimeFormat parameter can include slashes or colons as delimiters. The following table illustrates characters that have special meaning in strTimeFormat.
Character |
Meaning |
Example |
---|---|---|
H |
Hour number with no leading zero |
5 |
HH |
Hour number with leading zero, if applicable |
05 |
M |
Minutes number with no leading zero |
5 |
MM |
Minutes number with leading zero, if applicable |
05 |
S |
Seconds number with no leading zero |
5 |
SS |
Seconds number with leading zero, if applicable |
55 |
Return value
PBDOM_ATTRIBUTE. The PBDOM_ATTRIBUTE from which the SetDateTimeValue method was invoked.
See also