[This is preliminary documentation and is subject to change.]

Semi type-safe delegate of the IsValid(ITypeDescriptorContext, Object) function

Namespace: Tools.ComponentModelT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected delegate bool dIsValid(
	ITypeDescriptorContext context,
	Object value
)
Visual Basic
Protected Delegate Function dIsValid ( _
	context As ITypeDescriptorContext, _
	value As Object _
) As Boolean
Visual C++
protected delegate bool dIsValid(
	ITypeDescriptorContext^ context, 
	Object^ value
)
F#
type dIsValid = 
    delegate of 
        context:ITypeDescriptorContext * 
        value:Object -> bool
JScript
JScript does not support delegates.

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
value
Type: System..::..Object
The Object to test for validity.

Return Value

true if the specified value is valid for this object; otherwise, false.

See Also