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++ |
bool SplitViewShouldAdjustSizeOfSubview( NSSplitView splitView, NSView subview )
Function SplitViewShouldAdjustSizeOfSubview ( _ splitView As NSSplitView, _ subview As NSView _ ) As Boolean
bool SplitViewShouldAdjustSizeOfSubview( NSSplitView^ splitView, NSView^ subview )

- splitView (NSSplitView)
- The split view that sent the message.
- subview (NSView)
- The subview to resize.

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)