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

Delegate to the IsValid(ITypeDescriptorContext, UTT) function

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

Syntax

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

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context.
value
Type: TOther
Value to test validity

Return Value

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

See Also