Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / VerticalAlignConverter.cs / 1 / VerticalAlignConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- // namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Globalization; internal class VerticalAlignConverter : EnumConverter { static string[] stringValues = new String[(int) VerticalAlign.Bottom + 1]; static VerticalAlignConverter () { stringValues[(int) VerticalAlign.NotSet] = "NotSet"; stringValues[(int) VerticalAlign.Top] = "Top"; stringValues[(int) VerticalAlign.Middle] = "Middle"; stringValues[(int) VerticalAlign.Bottom] = "Bottom"; } // this constructor needs to be public despite the fact that it's in an internal // class so it can be created by Activator.CreateInstance. public VerticalAlignConverter () : base(typeof(VerticalAlign)) {} public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } else { return base.CanConvertFrom(context, sourceType); } } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value == null) return null; if (value is string) { string textValue = ((string)value).Trim(); if (textValue.Length == 0) return VerticalAlign.NotSet; switch (textValue) { case "NotSet": return VerticalAlign.NotSet; case "Top": return VerticalAlign.Top; case "Middle": return VerticalAlign.Middle; case "Bottom": return VerticalAlign.Bottom; } } return base.ConvertFrom(context, culture, value); } public override bool CanConvertTo(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertTo(context, sourceType); } public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string) && ((int) value <= (int)VerticalAlign.Bottom)) { return stringValues[(int) value]; } return base.ConvertTo(context, culture, value, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- // namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Globalization; internal class VerticalAlignConverter : EnumConverter { static string[] stringValues = new String[(int) VerticalAlign.Bottom + 1]; static VerticalAlignConverter () { stringValues[(int) VerticalAlign.NotSet] = "NotSet"; stringValues[(int) VerticalAlign.Top] = "Top"; stringValues[(int) VerticalAlign.Middle] = "Middle"; stringValues[(int) VerticalAlign.Bottom] = "Bottom"; } // this constructor needs to be public despite the fact that it's in an internal // class so it can be created by Activator.CreateInstance. public VerticalAlignConverter () : base(typeof(VerticalAlign)) {} public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } else { return base.CanConvertFrom(context, sourceType); } } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value == null) return null; if (value is string) { string textValue = ((string)value).Trim(); if (textValue.Length == 0) return VerticalAlign.NotSet; switch (textValue) { case "NotSet": return VerticalAlign.NotSet; case "Top": return VerticalAlign.Top; case "Middle": return VerticalAlign.Middle; case "Bottom": return VerticalAlign.Bottom; } } return base.ConvertFrom(context, culture, value); } public override bool CanConvertTo(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertTo(context, sourceType); } public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string) && ((int) value <= (int)VerticalAlign.Bottom)) { return stringValues[(int) value]; } return base.ConvertTo(context, culture, value, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UIElementIsland.cs
- LocalizedNameDescriptionPair.cs
- EventMetadata.cs
- SocketCache.cs
- SequenceDesigner.cs
- IndexedGlyphRun.cs
- CompositeDuplexBindingElement.cs
- LineSegment.cs
- Setter.cs
- ChtmlFormAdapter.cs
- GlobalizationSection.cs
- EditorServiceContext.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- StrictAndMessageFilter.cs
- EditingScope.cs
- UnsafeNativeMethods.cs
- GPPOINT.cs
- SqlClientFactory.cs
- RequestResizeEvent.cs
- Graphics.cs
- FileDialog_Vista_Interop.cs
- XmlArrayItemAttribute.cs
- XmlDocument.cs
- X509SecurityToken.cs
- SystemIPInterfaceStatistics.cs
- TreeViewHitTestInfo.cs
- XsltInput.cs
- SqlBulkCopyColumnMapping.cs
- cookie.cs
- Margins.cs
- AuthorizationContext.cs
- TabControlToolboxItem.cs
- webbrowsersite.cs
- LoginStatusDesigner.cs
- DocComment.cs
- ColorContext.cs
- HandlerFactoryCache.cs
- XpsFilter.cs
- GregorianCalendar.cs
- RelationshipEndMember.cs
- RowTypePropertyElement.cs
- GenericQueueSurrogate.cs
- DesignerForm.cs
- DataServices.cs
- CalculatedColumn.cs
- securitycriticaldataformultiplegetandset.cs
- SafeHandles.cs
- ProcessThread.cs
- UICuesEvent.cs
- PersistNameAttribute.cs
- RangeValuePatternIdentifiers.cs
- EventProviderWriter.cs
- infer.cs
- HttpWebRequest.cs
- GridViewRowEventArgs.cs
- EntityContainer.cs
- XPathItem.cs
- baseaxisquery.cs
- JsonSerializer.cs
- ApplicationSettingsBase.cs
- StartUpEventArgs.cs
- AccessViolationException.cs
- Error.cs
- DataGridCell.cs
- NamespaceEmitter.cs
- EnterpriseServicesHelper.cs
- ErrorLog.cs
- PolyLineSegment.cs
- FamilyMapCollection.cs
- XAMLParseException.cs
- ImageCodecInfo.cs
- DynamicActivity.cs
- LineServicesRun.cs
- Pair.cs
- XamlGridLengthSerializer.cs
- RtfFormatStack.cs
- backend.cs
- FormsAuthenticationConfiguration.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- Common.cs
- Size3DValueSerializer.cs
- ClientBase.cs
- PrintDialog.cs
- BindingExpressionUncommonField.cs
- FormViewInsertEventArgs.cs
- IISMapPath.cs
- DesignerValidatorAdapter.cs
- ConfigXmlSignificantWhitespace.cs
- ColumnPropertiesGroup.cs
- FormClosedEvent.cs
- XamlRtfConverter.cs
- RelatedEnd.cs
- ElementAtQueryOperator.cs
- CacheOutputQuery.cs
- Duration.cs
- FatalException.cs
- Bezier.cs
- ToolBar.cs
- CodeAttributeDeclaration.cs
- RawStylusSystemGestureInputReport.cs