Version

SplitOptions Property

Returns/sets whether mini-splitters are displayed in the scrollbar areas to allow the end user to split the editing area of the control. The default is EditorDocumentViewSplitOptions.AllowVerticalAndHorizontalSplits.
Syntax
'Declaration
 
Public Property SplitOptions As EditorDocumentViewSplitOptions
public EditorDocumentViewSplitOptions SplitOptions {get; set;}
Remarks

Note: This property only controls whether the end user can split the editing area (via the mini splitters in the scrollbar areas) and does not affect the ability to programmatically split the editing area by setting the SplitStatus property.

Note: If the XamSyntaxEditor is placed in a container element that measures its children with an infinite height or width (e.g., a StackPanel), then certain settings of this property will be considered 'invalid' and will be resolved to an appropriate setting. For example, if the XamSyntaxEditor is placed in a StackPanel with vertical orientation and this property is set to EditorDocumentViewSplitOptions.AllowHorizontalSplitsOnly, it will be resolved to EditorDocumentViewSplitOptions.SplittingNotAllowed

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also