<cDateTime>.AddMinutes

<< Click to Display Table of Contents >>

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

<cDateTime>.AddMinutes

 

Description

 

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

You can subtract by using a negative number.

 

Syntax

 

<cDateTime>.AddMinutes(nMinutes)

 

Returns

 

None.

 

Parameters

 

Name

Type

Optional

Meaning

nMinutes

Numeric

No

Positive or negative minutes 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.AddMinutes(4)

 

' Modified form

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