DekGenius.com
[ Team LiB ] Previous Section Next Section

BooleanConverter

System.ComponentModel (system.dll)class

This TypeConverter translates a Boolean into other representations for serialization and design-time scenarios. You should not call this directly from your own code.

public class BooleanConverter : TypeConverter {
// Public Constructors
   public BooleanConverter();
// Public Instance Methods
   public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType);  // overrides TypeConverter
   public override object ConvertFrom(ITypeDescriptorContext context, 
        System.Globalization.CultureInfo culture, object value);  // overrides TypeConverter
   public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context);  // overrides TypeConverter
   public override bool GetStandardValuesExclusive(ITypeDescriptorContext context);  // overrides TypeConverter
   public override bool GetStandardValuesSupported(ITypeDescriptorContext context);  // overrides TypeConverter
}

Hierarchy

System.Object TypeConverter BooleanConverter

    [ Team LiB ] Previous Section Next Section