MonobjcMonobjc Documented Class Library
ScanHexInt Method (intValue)
NamespacesMonobjc.FoundationNSScannerScanHexInt(UInt32%)

Scans for an unsigned value from a hexadecimal representation, returning a found value by reference.

Original signature is '- (BOOL)scanHexInt:(unsigned *)intValue'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool ScanHexInt(
	out uint intValue
)
Public Overridable Function ScanHexInt ( _
	<OutAttribute> ByRef intValue As UInteger _
) As Boolean
public:
virtual bool ScanHexInt(
	[OutAttribute] unsigned int% intValue
)
Parameters
intValue (UInt32%)
Upon return, contains the scanned value. Contains INT_MAX or INT_MIN on overflow.
Return Value
Returns YES if the receiver finds a valid hexadecimal integer representation, otherwise NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)