Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectCloneHelper.cs
- ProtocolElementCollection.cs
- StorageAssociationSetMapping.cs
- Char.cs
- Int32Storage.cs
- SqlXml.cs
- HwndSourceParameters.cs
- ImageCreator.cs
- IPPacketInformation.cs
- ArrangedElement.cs
- XmlSchemaSimpleContentExtension.cs
- JournalNavigationScope.cs
- StringConverter.cs
- StreamGeometryContext.cs
- SessionStateContainer.cs
- _OSSOCK.cs
- InputLanguageProfileNotifySink.cs
- KeyTimeConverter.cs
- RequestQueryProcessor.cs
- PeerTransportListenAddressValidatorAttribute.cs
- NativeMethods.cs
- ImageDrawing.cs
- NameValueSectionHandler.cs
- RoleGroupCollectionEditor.cs
- CopyAction.cs
- TextBoxAutomationPeer.cs
- CompositeKey.cs
- SkewTransform.cs
- MembershipPasswordException.cs
- SuppressIldasmAttribute.cs
- KeyConstraint.cs
- DateTime.cs
- SiteMapNode.cs
- webproxy.cs
- AmbientLight.cs
- BufferedGraphics.cs
- FixedSOMElement.cs
- ServiceSecurityAuditBehavior.cs
- CreateUserErrorEventArgs.cs
- RestHandler.cs
- CodeCommentStatementCollection.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- ServiceNameElementCollection.cs
- HTMLTagNameToTypeMapper.cs
- DragEventArgs.cs
- Focus.cs
- ActivityExecutionFilter.cs
- Pen.cs
- PingReply.cs
- KeyEventArgs.cs
- DesignerDataRelationship.cs
- QueryExecutionOption.cs
- ErrorFormatterPage.cs
- DirectionalLight.cs
- HiddenFieldDesigner.cs
- EffectiveValueEntry.cs
- BaseConfigurationRecord.cs
- SelectionRangeConverter.cs
- QilVisitor.cs
- CodeDomDecompiler.cs
- IdentityNotMappedException.cs
- EventData.cs
- _NetworkingPerfCounters.cs
- StateMachineHistory.cs
- XmlBoundElement.cs
- PlainXmlWriter.cs
- BlockCollection.cs
- MonthChangedEventArgs.cs
- DropTarget.cs
- ServiceBuildProvider.cs
- ParentControlDesigner.cs
- SqlCacheDependencyDatabase.cs
- DataColumn.cs
- SrgsText.cs
- basenumberconverter.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- TranslateTransform3D.cs
- WebBrowser.cs
- InfiniteIntConverter.cs
- JournalNavigationScope.cs
- XmlSchemaAttributeGroupRef.cs
- WSDualHttpSecurity.cs
- DockPattern.cs
- DataControlFieldHeaderCell.cs
- Query.cs
- COM2ExtendedTypeConverter.cs
- EndOfStreamException.cs
- CodeDOMUtility.cs
- SecurityResources.cs
- SourceElementsCollection.cs
- TCEAdapterGenerator.cs
- StringBuilder.cs
- HtmlControlAdapter.cs
- _ListenerResponseStream.cs
- EmbeddedMailObject.cs
- ProxyGenerator.cs
- DebugView.cs
- HashLookup.cs
- DoubleAnimationBase.cs
- SqlXmlStorage.cs