FileCsvDocumentTryGetGuid Method (String, Int32, Guid) |
Retrieves the value of a cell as a globally unique identifier, addressing the column by header name.
Namespace:
Rhino.FileIO
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntaxpublic bool TryGetGuid(
string column,
int row,
out Guid value
)
Public Function TryGetGuid (
column As String,
row As Integer,
<OutAttribute> ByRef value As Guid
) As Boolean
Parameters
- column
- Type: SystemString
The header name of the column. - row
- Type: SystemInt32
The zero-based data-row index (y). - value
- Type: SystemGuid
The parsed value, or Empty if the column or cell does not exist or cannot be parsed.
Return Value
Type:
Booleantrue if the column and cell exist and were parsed; otherwise false.
See Also