FileCsvDocumentTryGetLong Method (Int32, Int32, Int64) |
Retrieves the value of a cell as a 64-bit integer, parsed using the invariant culture.
Namespace:
Rhino.FileIO
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic bool TryGetLong(
int column,
int row,
out long value
)
Public Function TryGetLong (
column As Integer,
row As Integer,
<OutAttribute> ByRef value As Long
) As Boolean
Parameters
- column
- Type: SystemInt32
The zero-based column index (x). - row
- Type: SystemInt32
The zero-based row index (y). - value
- Type: SystemInt64
The parsed value, or 0 if the cell does not exist or cannot be parsed.
Return Value
Type:
Booleantrue if the cell exists and was parsed; otherwise false.
See Also