Click or drag to resize

FileCsvDocumentTryGetDateTime Method (Int32, Int32, DateTime)

Retrieves the value of a cell as a date and time, parsed with the invariant culture and RoundtripKind (so ISO 8601 values, including those written by Set(Int32, Int32, DateTime), round-trip).

Namespace:  Rhino.FileIO
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntax
public bool TryGetDateTime(
	int column,
	int row,
	out DateTime value
)

Parameters

column
Type: SystemInt32
The zero-based column index (x).
row
Type: SystemInt32
The zero-based row index (y).
value
Type: SystemDateTime
The parsed value, or MinValue if the cell does not exist or cannot be parsed.

Return Value

Type: Boolean
true if the cell exists and was parsed; otherwise false.
See Also