DateOptions.AddDays method
Returns a date that is the specified number of days away from the specified date.
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Function AddDays ( _
cDate As SimpleDate, _
nDays As Integer _
) As SimpleDate
'Usage
Dim instance As DateOptions
Dim cDate As SimpleDate
Dim nDays As Integer
Dim returnValue As SimpleDate
returnValue = instance.AddDays(cDate, _
nDays)
public SimpleDate AddDays(
SimpleDate cDate,
int nDays
)
Parameters
cDate
Type: Microsoft.SharePoint.Utilities.SimpleDateThe SimpleDate to which to add days.
nDays
Type: System.Int32The number of days to add.
Return value
Type: Microsoft.SharePoint.Utilities.SimpleDate
A SimpleDate value that represents the date that results from adding the specified number of days to the specified SimpleDate value.