DekGenius.com
[ Team LiB ] Previous Section Next Section

OpacityConverter

System.Windows.Forms (system.windows.forms.dll)class

This System.ComponentModel.TypeConverter can convert from an opacity value to a string. It is used in serialization and design-time scenarios and should not normally be called directly from your code.

public class OpacityConverter : System.ComponentModel.TypeConverter {
// Public Constructors
   public OpacityConverter();
// Public Instance Methods
   public override bool CanConvertFrom( System.ComponentModel.ITypeDescriptorContext context, 
        Type sourceType);  // overrides System.ComponentModel.TypeConverter
   public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, 
        System.Globalization.CultureInfo culture, object value);  // overrides System.ComponentModel.TypeConverter
   public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, 
        System.Globalization.CultureInfo culture, object value, 
        Type destinationType);  // overrides System.ComponentModel.TypeConverter
}

Hierarchy

System.Object System.ComponentModel.TypeConverter OpacityConverter

    [ Team LiB ] Previous Section Next Section