_Row.UTCToLocalTime Method
Obtains a DateTime value in a Table specified by the Row object at Index, that has been converted from Coordinated Universal Time (UTC) to local time.
Namespace: Microsoft.Office.Interop.Outlook
Assembly: Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)
Syntax
'Declaration
<DispIdAttribute()> _
Function UTCToLocalTime ( _
Index As Object _
) As DateTime
'Usage
Dim instance As _Row
Dim Index As Object
Dim returnValue As DateTime
returnValue = instance.UTCToLocalTime(Index)
[DispIdAttribute()]
DateTime UTCToLocalTime(
Object Index
)
Parameters
Index
Type: System.ObjectA 1-based index value that can be either an Integer (int in C#) value representing the column index for the Columns collection or a String (string in C#) representing the Name of the Column.
Return Value
Type: System.DateTime
A Date value that has been converted from a representation in UTC to local time. An error is returned if Index is invalid or the row value indicated by Index is not a Date value.
Remarks
Use the helper functions _Row.BinaryToString, _Row.LocalTimeToUTC, and Row.UTCToLocalTime to facilitate type conversion of column values at a specific row.
For information on property value representation in a Table, see Factors Affecting Property Value Representation in the Table and View Classes. For information on using Date-time comparisons in Table filters, see Filtering Items Using a Date-time Comparison.