MonobjcMonobjc Documented Class Library
SplitViewShouldHideDividerAtIndex Method (splitView, dividerIndex)
NamespacesMonobjc.AppKitINSSplitViewDelegateSplitViewShouldHideDividerAtIndex(NSSplitView, NSInteger)

Allows the delegate to determine whether a divider can be dragged or adjusted off the edge of the split view.

Original signature is '- (BOOL)splitView:(NSSplitView *)splitView shouldHideDividerAtIndex:(NSInteger)dividerIndex'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
bool SplitViewShouldHideDividerAtIndex(
	NSSplitView splitView,
	NSInteger dividerIndex
)
Function SplitViewShouldHideDividerAtIndex ( _
	splitView As NSSplitView, _
	dividerIndex As NSInteger _
) As Boolean
bool SplitViewShouldHideDividerAtIndex(
	NSSplitView^ splitView, 
	NSInteger dividerIndex
)
Parameters
splitView (NSSplitView)
The split view that sent the message.
dividerIndex (NSInteger)
The zero-based index of the divider.
Return Value
YES if the divider should allow dragging off the edge of the split view, resulting in it not being visible.
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)