Method GetVector3
GetVector3(int, string, string, string)
Gets the specified Vector3 value.
public Vector3? GetVector3(int rowIndex, string columnNameX, string columnNameY, string columnNameZ)
Parameters
rowIndexintThe index of the row to query.
columnNameXstringThe name/label of the column containing the x component of the vector.
columnNameYstringThe name/label of the column containing the y component of the vector.
columnNameZstringThe name/label of the column containing the z component of the vector.
Returns
- Vector3?
The associated value. null if no value is set.
GetVector3(int, int, int, int)
Gets the specified Vector3 value.
public Vector3? GetVector3(int rowIndex, int columnIndexX, int columnIndexY, int columnIndexZ)
Parameters
rowIndexintThe index of the row to query.
columnIndexXintThe index of the column containing the x component of the vector.
columnIndexYintThe index of the column containing the y component of the vector.
columnIndexZintThe index of the column containing the z component of the vector.
Returns
- Vector3?
The associated value. null if no value is set.