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
- QilStrConcatenator.cs
- RootProjectionNode.cs
- WindowsBrush.cs
- SortedList.cs
- SqlConnectionString.cs
- recordstatefactory.cs
- SmtpAuthenticationManager.cs
- TypeElementCollection.cs
- ToolStripComboBox.cs
- SemanticResolver.cs
- FileSystemWatcher.cs
- DrawItemEvent.cs
- SecurityCriticalDataForSet.cs
- XmlRootAttribute.cs
- CompatibleIComparer.cs
- SamlAdvice.cs
- IconConverter.cs
- Comparer.cs
- OrElse.cs
- WindowsProgressbar.cs
- StringWriter.cs
- Msmq4SubqueuePoisonHandler.cs
- RtfToXamlLexer.cs
- SHA1CryptoServiceProvider.cs
- TextRangeSerialization.cs
- Relationship.cs
- DetailsViewModeEventArgs.cs
- TextRunTypographyProperties.cs
- ChangePasswordAutoFormat.cs
- WindowsGraphicsCacheManager.cs
- Button.cs
- DeviceSpecific.cs
- BindingsCollection.cs
- CryptoHelper.cs
- SqlAliaser.cs
- UpdatePanelControlTrigger.cs
- DoubleCollectionConverter.cs
- BlurBitmapEffect.cs
- ContentType.cs
- HwndStylusInputProvider.cs
- RemoteTokenFactory.cs
- TemplateControlCodeDomTreeGenerator.cs
- PropertyGridDesigner.cs
- ThumbAutomationPeer.cs
- ADConnectionHelper.cs
- ImageCollectionCodeDomSerializer.cs
- ViewBase.cs
- HotSpot.cs
- ObjectToIdCache.cs
- Utility.cs
- NativeMethodsCLR.cs
- VectorCollectionValueSerializer.cs
- XhtmlBasicLiteralTextAdapter.cs
- DelegatingTypeDescriptionProvider.cs
- SourceLineInfo.cs
- DataGridViewCellCollection.cs
- RenderingEventArgs.cs
- XPathPatternParser.cs
- ComplexLine.cs
- UnknownBitmapEncoder.cs
- ToolStripContentPanelRenderEventArgs.cs
- RegexCapture.cs
- UniqueID.cs
- RegionData.cs
- RoleManagerEventArgs.cs
- WhitespaceRule.cs
- FilteredXmlReader.cs
- StylusPointProperty.cs
- _UriTypeConverter.cs
- Animatable.cs
- HttpHandlerActionCollection.cs
- JsonReaderDelegator.cs
- PropertyPath.cs
- FacetChecker.cs
- HwndHost.cs
- MeshGeometry3D.cs
- PerformanceCounterManager.cs
- WebPartConnectionsCancelEventArgs.cs
- DataColumnChangeEvent.cs
- SQLSingleStorage.cs
- HwndSource.cs
- counter.cs
- SmiContext.cs
- NamespaceCollection.cs
- BlurEffect.cs
- CharacterBuffer.cs
- PageCache.cs
- ProcessModuleCollection.cs
- SQLByteStorage.cs
- ContourSegment.cs
- CopyCodeAction.cs
- XsdDateTime.cs
- AppliedDeviceFiltersDialog.cs
- ContentDisposition.cs
- UIElementParagraph.cs
- InheritanceContextChangedEventManager.cs
- DataServiceBuildProvider.cs
- DataGridViewCellValueEventArgs.cs
- PolyBezierSegment.cs
- SafeSecurityHandles.cs