Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FontNamesConverter.cs / 1 / 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; using System.Security.Permissions; ////// Converts a string with font names separated by commas to and from /// an array of strings containing individual names. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StringSorter.cs
- ScrollChrome.cs
- CharacterString.cs
- Process.cs
- ExpressionBinding.cs
- GenericPrincipal.cs
- UrlAuthorizationModule.cs
- PersonalizableTypeEntry.cs
- InputLanguageCollection.cs
- Int16Animation.cs
- StringExpressionSet.cs
- DelimitedListTraceListener.cs
- ExtensionMethods.cs
- Convert.cs
- AssertFilter.cs
- BitmapSizeOptions.cs
- SafeArrayTypeMismatchException.cs
- DiscoveryDocumentSerializer.cs
- DesignerObject.cs
- DirectoryInfo.cs
- HostExecutionContextManager.cs
- ToolStripHighContrastRenderer.cs
- DataObjectPastingEventArgs.cs
- PartialTrustValidationBehavior.cs
- FunctionNode.cs
- ListChangedEventArgs.cs
- StrokeNodeEnumerator.cs
- EntityModelBuildProvider.cs
- CompilationSection.cs
- EncodingNLS.cs
- RNGCryptoServiceProvider.cs
- UrlAuthorizationModule.cs
- AutoGeneratedField.cs
- ClientScriptManager.cs
- StyleConverter.cs
- DispatcherObject.cs
- DataControlPagerLinkButton.cs
- RtfNavigator.cs
- KeyedHashAlgorithm.cs
- DataGridViewComboBoxCell.cs
- Configuration.cs
- FileNotFoundException.cs
- Encoding.cs
- MenuItemCollection.cs
- ErrorProvider.cs
- GeneratedCodeAttribute.cs
- InputQueueChannelAcceptor.cs
- BaseValidatorDesigner.cs
- UnsafeNativeMethods.cs
- ScriptingWebServicesSectionGroup.cs
- BitVector32.cs
- MouseGestureValueSerializer.cs
- AuthorizationSection.cs
- XmlReaderSettings.cs
- BrowserCapabilitiesCompiler.cs
- FixedFlowMap.cs
- SkinIDTypeConverter.cs
- SubMenuStyle.cs
- CodeAttributeDeclaration.cs
- TextTreeObjectNode.cs
- Application.cs
- WorkflowDebuggerSteppingAttribute.cs
- RuntimeIdentifierPropertyAttribute.cs
- NativeObjectSecurity.cs
- ExpressionReplacer.cs
- CommandBindingCollection.cs
- ButtonColumn.cs
- Graph.cs
- CustomValidator.cs
- SynchronizationHandlesCodeDomSerializer.cs
- ExtensionCollection.cs
- DefaultParameterValueAttribute.cs
- DbParameterCollectionHelper.cs
- wmiprovider.cs
- TableStyle.cs
- FrameworkContentElement.cs
- WorkflowDispatchContext.cs
- Path.cs
- UriExt.cs
- CrossContextChannel.cs
- OpCodes.cs
- BypassElement.cs
- LinqDataView.cs
- TypeLibConverter.cs
- PageCodeDomTreeGenerator.cs
- DescriptionAttribute.cs
- LabelDesigner.cs
- ScriptHandlerFactory.cs
- ContainerControl.cs
- QilTypeChecker.cs
- HttpApplication.cs
- CatalogZone.cs
- HtmlTernaryTree.cs
- Rotation3DAnimation.cs
- UriTemplateQueryValue.cs
- ConfigXmlWhitespace.cs
- StyleXamlTreeBuilder.cs
- DataKey.cs
- PageTheme.cs
- SqlException.cs