Click or drag to resize

FileCsvDocumentTryGetString Method (String, Int32, String)

Retrieves the value of a cell as a string, addressing the column by header name.

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

Parameters

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

Return Value

Type: Boolean
true if the column and cell exist; otherwise false.
See Also