DefaultOptionExtensions.GetReplicateNewLineCharacter Method
Determines whether to duplicate the newline character or character sequence if it is already present when inserting a newline.
Namespace: Microsoft.VisualStudio.Text.Editor.OptionsExtensionMethods
Assembly: Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetReplicateNewLineCharacter ( _
options As IEditorOptions _
) As Boolean
public static bool GetReplicateNewLineCharacter(
this IEditorOptions options
)
[ExtensionAttribute]
public:
static bool GetReplicateNewLineCharacter(
IEditorOptions^ options
)
static member GetReplicateNewLineCharacter :
options:IEditorOptions -> bool
public static function GetReplicateNewLineCharacter(
options : IEditorOptions
) : boolean
Parameters
options
Type: Microsoft.VisualStudio.Text.Editor.IEditorOptionsThe IEditorOptions.
Return Value
Type: Boolean
true if the newline character(s) should be duplicated, otherwise false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEditorOptions. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.Text.Editor.OptionsExtensionMethods Namespace