MonobjcMonobjc Documented Class Library
NSSplitView..::..SplitViewConstrainMinCoordinateOfSubviewAtEventHandler Delegate
NamespacesMonobjc.AppKitNSSplitViewNSSplitView..::..SplitViewConstrainMinCoordinateOfSubviewAtEventHandler

Allows the delegate for sender to constrain the minimum coordinate limit of a divider when the user drags it.

Original signature is '- (CGFloat)splitView:(NSSplitView *)splitView constrainMinCoordinate:(CGFloat)proposedMin ofSubviewAt:(NSInteger)dividerIndex'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate CGFloat SplitViewConstrainMinCoordinateOfSubviewAtEventHandler(
	NSSplitView splitView,
	CGFloat proposedMin,
	NSInteger dividerIndex
)
Public Delegate Function SplitViewConstrainMinCoordinateOfSubviewAtEventHandler ( _
	splitView As NSSplitView, _
	proposedMin As CGFloat, _
	dividerIndex As NSInteger _
) As CGFloat
public delegate CGFloat SplitViewConstrainMinCoordinateOfSubviewAtEventHandler(
	NSSplitView^ splitView, 
	CGFloat proposedMin, 
	NSInteger dividerIndex
)
Parameters
splitView (NSSplitView)
The split view that sent the message.
proposedMin (CGFloat)
The proposed minimum coordinate limit of the subview, in the split view’s flipped coordinate system.
dividerIndex (NSInteger)
Specifies the divider the user is moving, with the first divider being 0 and increasing from top to bottom (or left to right).
Return Value
The minimum coordinate limit of the divider.
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)