DatetimeSetDatetimeTz Method |
Sets the date, time and timezone offset portions
of this Datetime object to the specified values.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.24.2.1
Syntax public void SetDatetimeTz(
int year,
int month,
int dayOfMonth,
int hour,
int minute,
int second,
int milliSecond,
int timezoneOffsetMinutes
)
Public Sub SetDatetimeTz (
year As Integer,
month As Integer,
dayOfMonth As Integer,
hour As Integer,
minute As Integer,
second As Integer,
milliSecond As Integer,
timezoneOffsetMinutes As Integer
)
public:
void SetDatetimeTz(
int year,
int month,
int dayOfMonth,
int hour,
int minute,
int second,
int milliSecond,
int timezoneOffsetMinutes
)
member SetDatetimeTz :
year : int *
month : int *
dayOfMonth : int *
hour : int *
minute : int *
second : int *
milliSecond : int *
timezoneOffsetMinutes : int -> unit
Parameters
- year
- Type: SystemInt32
The year. - month
- Type: SystemInt32
The month between 1-12. - dayOfMonth
- Type: SystemInt32
The day of the month between 1-31. - hour
- Type: SystemInt32
The hour of the day between 0-23. - minute
- Type: SystemInt32
The minute between 0-59. - second
- Type: SystemInt32
The second between 0-59. - milliSecond
- Type: SystemInt32
The millisecond between 0-999. - timezoneOffsetMinutes
- Type: SystemInt32
The timezone offset in minutes.
See Also