TextViewOptionExtensions.IsDragDropEditingEnabled Method
Determines whether the option for drag/drop editing is enabled in the specified options.
Namespace: Microsoft.VisualStudio.Text.Editor.OptionsExtensionMethods
Assembly: Microsoft.VisualStudio.Text.UI (in Microsoft.VisualStudio.Text.UI.dll)
Syntax
'宣言
<ExtensionAttribute> _
Public Shared Function IsDragDropEditingEnabled ( _
options As IEditorOptions _
) As Boolean
public static bool IsDragDropEditingEnabled(
this IEditorOptions options
)
[ExtensionAttribute]
public:
static bool IsDragDropEditingEnabled(
IEditorOptions^ options
)
static member IsDragDropEditingEnabled :
options:IEditorOptions -> bool
public static function IsDragDropEditingEnabled(
options : IEditorOptions
) : boolean
Parameters
- options
Type: Microsoft.VisualStudio.Text.Editor.IEditorOptions
The IEditorOptions used to look up the option value.
Return Value
Type: System.Boolean
true if the drag/drop editing option is enabled, false otherwise.
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
TextViewOptionExtensions Class
Microsoft.VisualStudio.Text.Editor.OptionsExtensionMethods Namespace