Allows the delegate to specify whether the subview should be resized.
Original signature is '- (BOOL)splitView:(NSSplitView *)splitView shouldAdjustSizeOfSubview:(NSView *)subview'
Available in Mac OS X v10.6 and later.

C# | Visual Basic | Visual C++ |
public event NSSplitView..::..SplitViewShouldAdjustSizeOfSubviewEventHandler SplitViewShouldAdjustSizeOfSubview
Public Event SplitViewShouldAdjustSizeOfSubview As NSSplitView..::..SplitViewShouldAdjustSizeOfSubviewEventHandler
public: event NSSplitView..::..SplitViewShouldAdjustSizeOfSubviewEventHandler^ SplitViewShouldAdjustSizeOfSubview { void add (NSSplitView..::..SplitViewShouldAdjustSizeOfSubviewEventHandler^ value); void remove (NSSplitView..::..SplitViewShouldAdjustSizeOfSubviewEventHandler^ value); }

YES if adjustSubviews can change the size of the subview, otherwise NO. By returning NO, you lock the size of the split view subview while the split view is resized.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)