DateTime :: day - Day number
The day property is the day value for the current date (dd of yyyymmdd).
Return value:  Day ( int32  )
Day of the month. The value should range between 1 and 31.
Implementation overview
- Get day from date
 DateTime :: day (  )
- Set day in date
 DateTime :: day ( iDay )
Implementation details
- to list
- 
Set day in date
 int32 DateTime  :: day ( int32 iDay )
 The function changes the day value in the current date to iDay. The function does not check the day value, except that the value is between 1 and 31. When the day value exceeds the number of days in the defined month, the month value will increase automatically. - iDay
 - Day
Day of the month. The value should range between 1 and 31. 
 to list
- iDay
 - Day

