Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / FontNamesConverter.cs / 1305376 / FontNamesConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.ComponentModel.Design; using System; using System.ComponentModel; using System.Collections; using System.Globalization; ////// Converts a string with font names separated by commas to and from /// an array of strings containing individual names. /// public class FontNamesConverter : TypeConverter { ////// Determines if the specified data type can be converted to an array of strings /// containing individual font names. /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return false; } ////// Parses a string that represents a list of font names separated by /// commas into an array of strings containing individual font names. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { if (((string)value).Length == 0) { return new string[0]; } string[] names = ((string)value).Split(new char[] { culture.TextInfo.ListSeparator[0] }); for (int i = 0; i < names.Length; i++) { names[i] = names[i].Trim(); } return names; } throw GetConvertFromException(value); } ////// Creates a string that represents a list of font names separated /// by commas from an array of strings containing individual font names. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string)) { if (value == null) { return String.Empty; } return string.Join(culture.TextInfo.ListSeparator, ((string[])value)); } throw GetConvertToException(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.ComponentModel.Design; using System; using System.ComponentModel; using System.Collections; using System.Globalization; ////// Converts a string with font names separated by commas to and from /// an array of strings containing individual names. /// public class FontNamesConverter : TypeConverter { ////// Determines if the specified data type can be converted to an array of strings /// containing individual font names. /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return false; } ////// Parses a string that represents a list of font names separated by /// commas into an array of strings containing individual font names. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { if (((string)value).Length == 0) { return new string[0]; } string[] names = ((string)value).Split(new char[] { culture.TextInfo.ListSeparator[0] }); for (int i = 0; i < names.Length; i++) { names[i] = names[i].Trim(); } return names; } throw GetConvertFromException(value); } ////// Creates a string that represents a list of font names separated /// by commas from an array of strings containing individual font names. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string)) { if (value == null) { return String.Empty; } return string.Join(culture.TextInfo.ListSeparator, ((string[])value)); } throw GetConvertToException(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
- DataGridRowHeaderAutomationPeer.cs
- DataControlButton.cs
- DocumentOrderQuery.cs
- SharedPersonalizationStateInfo.cs
- WebException.cs
- PlatformCulture.cs
- CodeMethodMap.cs
- ISAPIRuntime.cs
- SignedPkcs7.cs
- GetResponse.cs
- HostedElements.cs
- ObjectQuery_EntitySqlExtensions.cs
- BasicKeyConstraint.cs
- SafeRegistryKey.cs
- NamespaceMapping.cs
- Timer.cs
- HttpProtocolReflector.cs
- CodeCatchClauseCollection.cs
- ChannelManager.cs
- Int64AnimationUsingKeyFrames.cs
- DataFormat.cs
- URLBuilder.cs
- PolicyManager.cs
- ReadOnlyCollectionBuilder.cs
- PackageRelationshipSelector.cs
- PresentationSource.cs
- SqlSelectStatement.cs
- InstanceCollisionException.cs
- MessagingActivityHelper.cs
- Converter.cs
- RuleSettings.cs
- TwoPhaseCommitProxy.cs
- PermissionListSet.cs
- input.cs
- DataPagerFieldItem.cs
- UriTemplateQueryValue.cs
- DynamicObjectAccessor.cs
- BindingExpressionUncommonField.cs
- ParamArrayAttribute.cs
- NativeMethodsCLR.cs
- BamlBinaryWriter.cs
- ToolStripComboBox.cs
- XsdBuilder.cs
- DrawListViewColumnHeaderEventArgs.cs
- ISAPIApplicationHost.cs
- StackSpiller.cs
- View.cs
- BulletChrome.cs
- AutomationProperties.cs
- DataGridViewComboBoxEditingControl.cs
- Utilities.cs
- EnumMember.cs
- XPathParser.cs
- Compilation.cs
- SafeRightsManagementHandle.cs
- EventDescriptor.cs
- Expression.cs
- NotifyInputEventArgs.cs
- SafeIUnknown.cs
- RenderTargetBitmap.cs
- webbrowsersite.cs
- EmptyReadOnlyDictionaryInternal.cs
- ResponseStream.cs
- HttpListenerException.cs
- ACE.cs
- safelinkcollection.cs
- DbConvert.cs
- WpfXamlLoader.cs
- FullTextState.cs
- SortableBindingList.cs
- FontConverter.cs
- OrderedDictionaryStateHelper.cs
- TemplateKey.cs
- AdditionalEntityFunctions.cs
- SQLBoolean.cs
- XmlSerializer.cs
- XPathAxisIterator.cs
- XmlDocumentSurrogate.cs
- SourceFileInfo.cs
- SimpleHandlerBuildProvider.cs
- ElementNotEnabledException.cs
- InertiaTranslationBehavior.cs
- TypeName.cs
- ModulesEntry.cs
- _AuthenticationState.cs
- TrackingConditionCollection.cs
- IPHostEntry.cs
- PolyBezierSegment.cs
- CryptoApi.cs
- ImageMapEventArgs.cs
- DesignerCalendarAdapter.cs
- AtomEntry.cs
- LocalizableResourceBuilder.cs
- ToolBar.cs
- AuthenticationModeHelper.cs
- ArrayTypeMismatchException.cs
- ConfigurationManager.cs
- RuleInfoComparer.cs
- AdRotatorDesigner.cs
- XmlResolver.cs