IEditorOptions.SetOptionValue<T> Method (EditorOptionKey<T>, T)
Sets the value of the specified option in the current scope.
Namespace: Microsoft.VisualStudio.Text.Editor
Assembly: Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)
Syntax
'宣言
Sub SetOptionValue(Of T) ( _
key As EditorOptionKey(Of T), _
value As T _
)
void SetOptionValue<T>(
EditorOptionKey<T> key,
T value
)
generic<typename T>
void SetOptionValue(
EditorOptionKey<T> key,
T value
)
abstract SetOptionValue :
key:EditorOptionKey<'T> *
value:'T -> unit
JScript does not support generic types or methods.
Type Parameters
- T
The type of the key.
Parameters
- key
Type: Microsoft.VisualStudio.Text.Editor.EditorOptionKey<T>
The key of the option.
- value
Type: T
The new value of the option.
Remarks
If the given option is not applicable in the current scope, it attempts to set the option in the global scope.
.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.