System.Windows.Forms (system.windows.forms.dll) | class |
Part of the data-binding framework, this EventArgs
class is used when the Binding.Format event is
raised. You can find out what the DesiredType is
to which the Value object should be converted. See
Binding for more information.
public class ConvertEventArgs : EventArgs {
// Public Constructors
public ConvertEventArgs(object value, Type desiredType);
// Public Instance Properties
public Type DesiredType{get; }
public object Value{set; get; }
}
Hierarchy
System.Object System.EventArgs
ConvertEventArgs
Passed To
Binding.{OnFormat(), OnParse()}, ConvertEventHandler.{BeginInvoke(),
Invoke()}
|