Click or drag to resize

FileCsvDocumentTryGetString Method (Int32, Int32, String)

Retrieves the value of a cell as a string.

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

Parameters

column
Type: SystemInt32
The zero-based column index (x).
row
Type: SystemInt32
The zero-based row index (y).
value
Type: SystemString
The value of the cell, or null if the cell does not exist.

Return Value

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