Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //----------------------------------------------------------------------------- // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartConnectionsDisconnectVerb.cs
- TransactionManager.cs
- LinqDataSourceEditData.cs
- ServiceOperationParameter.cs
- BitConverter.cs
- XslTransform.cs
- XmlChildEnumerator.cs
- HotSpotCollection.cs
- Enum.cs
- EditorBrowsableAttribute.cs
- HttpHandlersInstallComponent.cs
- DataKey.cs
- HandlerWithFactory.cs
- AppearanceEditorPart.cs
- CqlLexer.cs
- BooleanAnimationUsingKeyFrames.cs
- AttributeAction.cs
- TableLayoutPanel.cs
- IteratorFilter.cs
- ModifierKeysValueSerializer.cs
- HtmlTableCellCollection.cs
- DependencyPropertyHelper.cs
- StorageMappingItemLoader.cs
- XmlElementCollection.cs
- MetaType.cs
- _DigestClient.cs
- GroupStyle.cs
- RemoveStoryboard.cs
- SqlWorkflowPersistenceService.cs
- Imaging.cs
- QuinticEase.cs
- TdsParameterSetter.cs
- ScriptResourceAttribute.cs
- SequenceFullException.cs
- MainMenu.cs
- RunClient.cs
- UIElement3D.cs
- DataIdProcessor.cs
- FormViewUpdateEventArgs.cs
- RequestCachePolicy.cs
- TypeNameConverter.cs
- FaultContractInfo.cs
- CodeFieldReferenceExpression.cs
- objectresult_tresulttype.cs
- TextSpan.cs
- BrowserInteropHelper.cs
- ObservableCollection.cs
- WebFormsRootDesigner.cs
- embossbitmapeffect.cs
- WebPartDisplayModeEventArgs.cs
- IItemContainerGenerator.cs
- QilTargetType.cs
- COM2ExtendedBrowsingHandler.cs
- ProgressBar.cs
- CalendarDateRange.cs
- HostUtils.cs
- LinkedResource.cs
- PersistenceException.cs
- SlipBehavior.cs
- XmlReaderSettings.cs
- SortedDictionary.cs
- MulticastDelegate.cs
- ParameterEditorUserControl.cs
- ContainsRowNumberChecker.cs
- DataGridColumn.cs
- KeyInfo.cs
- Win32SafeHandles.cs
- Stylesheet.cs
- TableLayout.cs
- TimelineGroup.cs
- ToolStripButton.cs
- Line.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- ServiceElement.cs
- DynamicResourceExtensionConverter.cs
- PatternMatcher.cs
- HtmlControl.cs
- DataPointer.cs
- util.cs
- GridViewPageEventArgs.cs
- StylusShape.cs
- InstallerTypeAttribute.cs
- ListView.cs
- OutputBuffer.cs
- TextEditorThreadLocalStore.cs
- ErrorView.xaml.cs
- DataListGeneralPage.cs
- updateconfighost.cs
- FormViewPagerRow.cs
- CompositeFontInfo.cs
- GacUtil.cs
- DataSourceHelper.cs
- FileRecordSequence.cs
- HScrollBar.cs
- X509RecipientCertificateServiceElement.cs
- Input.cs
- UnmanagedMemoryStream.cs
- DesignerListAdapter.cs
- BookmarkEventArgs.cs
- EventData.cs