MonobjcMonobjc Documented Class Library
SetFloatingPointFormatLeftRight Method (autoRange, leftDigits, rightDigits)
NamespacesMonobjc.AppKitNSCellSetFloatingPointFormatLeftRight(Boolean, NSUInteger, NSUInteger)

Sets the auto-ranging and floating point number format of the receiver’s cell. (Deprecated in Mac OS X v10.0. Use a formatter instead. See setFormatter:)

Original signature is '- (void)setFloatingPointFormat:(BOOL)autoRange left:(NSUInteger)leftDigits right:(NSUInteger)rightDigits'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
[ObsoleteAttribute("Deprecated in Mac OS X v10.0. Use a formatter instead. See setFormatter:")]
public virtual void SetFloatingPointFormatLeftRight(
	bool autoRange,
	NSUInteger leftDigits,
	NSUInteger rightDigits
)
<ObsoleteAttribute("Deprecated in Mac OS X v10.0. Use a formatter instead. See setFormatter:")> _
Public Overridable Sub SetFloatingPointFormatLeftRight ( _
	autoRange As Boolean, _
	leftDigits As NSUInteger, _
	rightDigits As NSUInteger _
)
[ObsoleteAttribute(L"Deprecated in Mac OS X v10.0. Use a formatter instead. See setFormatter:")]
public:
virtual void SetFloatingPointFormatLeftRight(
	bool autoRange, 
	NSUInteger leftDigits, 
	NSUInteger rightDigits
)
Parameters
autoRange (Boolean)
If YES, auto-ranging is enabled, otherwise it is disabled.
leftDigits (NSUInteger)
The number of digits to display to the left of the decimal point.
rightDigits (NSUInteger)
The number of digits to display to the right of the decimal point.
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.AppKit (Module: Monobjc.AppKit)