Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / HorizontalAlignConverter.cs / 1305376 / HorizontalAlignConverter.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 HorizontalAlignConverter : EnumConverter { static string[] stringValues = new String[(int) HorizontalAlign.Justify + 1]; static HorizontalAlignConverter () { stringValues[(int) HorizontalAlign.NotSet] = "NotSet"; stringValues[(int) HorizontalAlign.Left] = "Left"; stringValues[(int) HorizontalAlign.Center] = "Center"; stringValues[(int) HorizontalAlign.Right] = "Right"; stringValues[(int) HorizontalAlign.Justify] = "Justify"; } // 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 HorizontalAlignConverter () : base(typeof(HorizontalAlign)) {} 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 HorizontalAlign.NotSet; switch (textValue) { case "NotSet": return HorizontalAlign.NotSet; case "Left": return HorizontalAlign.Left; case "Center": return HorizontalAlign.Center; case "Right": return HorizontalAlign.Right; case "Justify": return HorizontalAlign.Justify; } } 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)HorizontalAlign.Justify)) { 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 HorizontalAlignConverter : EnumConverter { static string[] stringValues = new String[(int) HorizontalAlign.Justify + 1]; static HorizontalAlignConverter () { stringValues[(int) HorizontalAlign.NotSet] = "NotSet"; stringValues[(int) HorizontalAlign.Left] = "Left"; stringValues[(int) HorizontalAlign.Center] = "Center"; stringValues[(int) HorizontalAlign.Right] = "Right"; stringValues[(int) HorizontalAlign.Justify] = "Justify"; } // 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 HorizontalAlignConverter () : base(typeof(HorizontalAlign)) {} 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 HorizontalAlign.NotSet; switch (textValue) { case "NotSet": return HorizontalAlign.NotSet; case "Left": return HorizontalAlign.Left; case "Center": return HorizontalAlign.Center; case "Right": return HorizontalAlign.Right; case "Justify": return HorizontalAlign.Justify; } } 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)HorizontalAlign.Justify)) { 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
- Hyperlink.cs
- Font.cs
- EdmSchemaError.cs
- CustomAttributeBuilder.cs
- translator.cs
- OleDbRowUpdatedEvent.cs
- HandlerMappingMemo.cs
- AdapterDictionary.cs
- FixedFindEngine.cs
- Journal.cs
- HtmlShim.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- XmlAttributeCollection.cs
- WebPartManager.cs
- UserValidatedEventArgs.cs
- Column.cs
- Command.cs
- TextBreakpoint.cs
- ACL.cs
- CommandEventArgs.cs
- ButtonBase.cs
- SessionEndedEventArgs.cs
- ObjectDataSourceSelectingEventArgs.cs
- Parsers.cs
- FontFamily.cs
- RuntimeConfigLKG.cs
- IDQuery.cs
- EndpointAddress.cs
- WebPartConnectionsConnectVerb.cs
- TypeSystemHelpers.cs
- Inline.cs
- ProviderSettings.cs
- MarshalByRefObject.cs
- WebPartEditorCancelVerb.cs
- QueueProcessor.cs
- Visitor.cs
- AsynchronousChannelMergeEnumerator.cs
- URLEditor.cs
- Style.cs
- Vector3DCollection.cs
- TreeNodeStyle.cs
- ActivityCodeDomReferenceService.cs
- VisualTarget.cs
- PasswordTextContainer.cs
- EdgeProfileValidation.cs
- AppLevelCompilationSectionCache.cs
- InternalMappingException.cs
- XmlWrappingReader.cs
- ChameleonKey.cs
- PackageRelationshipSelector.cs
- CodeExpressionStatement.cs
- WindowsTreeView.cs
- SecondaryViewProvider.cs
- ScrollViewerAutomationPeer.cs
- XmlToDatasetMap.cs
- AnnotationComponentChooser.cs
- EntityClientCacheKey.cs
- WebPartVerb.cs
- OrderByBuilder.cs
- RSAOAEPKeyExchangeFormatter.cs
- XmlObjectSerializerReadContextComplex.cs
- ToolStripItemClickedEventArgs.cs
- SerializationFieldInfo.cs
- ScriptingAuthenticationServiceSection.cs
- Vector3DCollection.cs
- CuspData.cs
- GetWinFXPath.cs
- SectionRecord.cs
- GPRECT.cs
- SmtpLoginAuthenticationModule.cs
- ModelVisual3D.cs
- WaitHandle.cs
- XmlQuerySequence.cs
- RowUpdatingEventArgs.cs
- TypeUtil.cs
- WriterOutput.cs
- SHA384Managed.cs
- TextServicesCompartment.cs
- SerializationSectionGroup.cs
- Int32AnimationUsingKeyFrames.cs
- ControlBindingsCollection.cs
- WindowsIdentity.cs
- WinHttpWebProxyFinder.cs
- RenameRuleObjectDialog.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- _Events.cs
- CompletionCallbackWrapper.cs
- __Error.cs
- DependencyPropertyAttribute.cs
- Timer.cs
- StringExpressionSet.cs
- EditorZone.cs
- SqlUserDefinedTypeAttribute.cs
- MenuItem.cs
- QilPatternVisitor.cs
- SecurityAlgorithmSuiteConverter.cs
- FormsIdentity.cs
- XmlIgnoreAttribute.cs
- WindowsAltTab.cs
- DescendantOverDescendantQuery.cs