EditorOptionDefinition.IsValid Method
Determines whether the proposed value is valid.
Namespace: Microsoft.VisualStudio.Text.Editor
Assembly: Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)
Syntax
'Déclaration
Public Overridable Function IsValid ( _
ByRef proposedValue As Object _
) As Boolean
public virtual bool IsValid(
ref Object proposedValue
)
public:
virtual bool IsValid(
Object^% proposedValue
)
abstract IsValid :
proposedValue:Object byref -> bool
override IsValid :
proposedValue:Object byref -> bool
public function IsValid(
proposedValue : Object
) : boolean
Parameters
- proposedValue
Type: System.Object%
The proposed value for this option.
Return Value
Type: System.Boolean
true if the value is valid, otherwise false.
Remarks
By the time the value is passed to this method, it has already been checked to be of the correct ValueType.
The implementer of this method may modify the value.
.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.