Converts a string value to a date time.
public static DateTime DateFromString(
string value
)
Public Shared Function DateFromString( _
ByVal value As String _
) As Date
NSDate* dateFromString:(NSString*)value;
public static Date dateFromString(String value)
public:
static DateTime^ DateFromString(
String^ value
)
value
The string value to be parsed to a date.
The data value parsed.
DateToString converts a date value to a universal ISO string value. In the .NET platform, this is performed using the "s" format specifier and in the JavaScript platform this is performed using the ToISOString method.
The string value can be converted back to a date using DateFromString.
DateToString and DateFromString can be used to convert a date value to and from a string. The conversion uses a universal ISO time format (the "s" format specifier in .NET and ToISOString in JavaScript).
These methods are used when serializing and de-serializing date values such as when an annotation container is saved or loaded from the disk. the data value is converted to a string during serialization (saving) and then converted back from string during deserialization (loading).
For example, DateToString and DateFromString are used when saving and loading AnnReview.Date values.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document