SpreadsheetFieldValueGetNLong Method |
Returns the value for the field passed across or null if the field could not be found.
Namespace: Test.FrameworkAssembly: Test.Framework (in Test.Framework.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Nullable<long> GetNLong(
string fieldName,
bool isHex = false
)
Public Function GetNLong (
fieldName As String,
Optional isHex As Boolean = false
) As Nullable(Of Long)
public:
Nullable<long long> GetNLong(
String^ fieldName,
bool isHex = false
)
member GetNLong :
fieldName : string *
?isHex : bool
(* Defaults:
let _isHex = defaultArg isHex false
*)
-> Nullable<int64>
Parameters
- fieldName
- Type: SystemString
- isHex (Optional)
- Type: SystemBoolean
True if the cell contains a hex value rather than decimal.
Return Value
Type:
NullableInt64See Also