<cDateTime>.AddMonths

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Date and Time > cDateTime > cDateTime_Methods >

<cDateTime>.AddMonths

 

Description

 

Adds the specified number of months to the value of this cDateTime object.

You can subtract by using a negative number.

 

Syntax

 

<cDateTime>.AddMonths(nMonths)

 

Returns

 

None.

 

Parameters

 

Name

Type

Optional

Meaning

nMonths

Numeric

No

Positive or negative months to add or subtract

 

Remarks

 

Restrictions

 

See also

 

Examples

 

' Create an object with current date and time

Dim myDateTime As New cDateTime

 

' Original form

MsgBox 0, "myDateTime:" + $CRLF + myDateTime.toString

 

' Modify the date

myDateTime.AddMonths(4)

 

' Modified form

MsgBox 0, "myDateTime modified:" + $CRLF + myDateTime.toString