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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EditorZoneDesigner.cs
- GroupBox.cs
- EventLog.cs
- SharedStatics.cs
- CreateDataSourceDialog.cs
- RangeBaseAutomationPeer.cs
- NotificationContext.cs
- MarkupCompilePass1.cs
- GenericUriParser.cs
- XmlSchemaException.cs
- SerialReceived.cs
- XsdCachingReader.cs
- panel.cs
- TreeNodeBindingCollection.cs
- InvalidPrinterException.cs
- SqlConnectionFactory.cs
- DataTableReaderListener.cs
- WindowsAuthenticationModule.cs
- oledbmetadatacolumnnames.cs
- BaseTransportHeaders.cs
- EventLogEntryCollection.cs
- UrlMappingCollection.cs
- XsltContext.cs
- ToolStripSeparator.cs
- FrameworkContentElementAutomationPeer.cs
- CryptoApi.cs
- EntityProxyTypeInfo.cs
- ToolStripPanelRow.cs
- AspNetHostingPermission.cs
- MethodBuilder.cs
- PreservationFileReader.cs
- MultipleCopiesCollection.cs
- RecognizedWordUnit.cs
- GenericRootAutomationPeer.cs
- TakeQueryOptionExpression.cs
- ImageKeyConverter.cs
- InsufficientMemoryException.cs
- ArglessEventHandlerProxy.cs
- OleAutBinder.cs
- AbandonedMutexException.cs
- OneToOneMappingSerializer.cs
- CompoundFileStreamReference.cs
- SeverityFilter.cs
- DescriptionAttribute.cs
- ConfigXmlCDataSection.cs
- WorkflowMarkupSerializerMapping.cs
- EventLogRecord.cs
- HeaderUtility.cs
- GotoExpression.cs
- ConfigurationElement.cs
- SchemaEntity.cs
- RowToParametersTransformer.cs
- ListControl.cs
- HttpServerVarsCollection.cs
- ProviderCommandInfoUtils.cs
- DataGridColumn.cs
- SerializationSectionGroup.cs
- ProfileSettings.cs
- CodeTypeDeclaration.cs
- SqlGenericUtil.cs
- CssTextWriter.cs
- ScriptingSectionGroup.cs
- CodeNamespaceImport.cs
- ContentElementCollection.cs
- Input.cs
- ModuleBuilderData.cs
- Terminate.cs
- TcpTransportElement.cs
- SectionVisual.cs
- EDesignUtil.cs
- RuntimeEnvironment.cs
- CodeCatchClause.cs
- XmlWriterSettings.cs
- OutputChannel.cs
- CopyNamespacesAction.cs
- SmuggledIUnknown.cs
- AnnotationAdorner.cs
- ListBoxAutomationPeer.cs
- AccessViolationException.cs
- MergeFilterQuery.cs
- ToolStripScrollButton.cs
- PropertyIDSet.cs
- WorkerRequest.cs
- ListViewItem.cs
- BaseDataBoundControl.cs
- PartialTrustVisibleAssemblyCollection.cs
- EnvironmentPermission.cs
- TextEditorCopyPaste.cs
- TcpClientSocketManager.cs
- FaultCallbackWrapper.cs
- WebPartDescription.cs
- _Events.cs
- Vars.cs
- ParamArrayAttribute.cs
- __ComObject.cs
- panel.cs
- WhitespaceRuleReader.cs
- DbMetaDataCollectionNames.cs
- DescendentsWalker.cs
- GridViewCancelEditEventArgs.cs