Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / FontCollection.cs / 1305376 / FontCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Text { using System.Diagnostics; using System; using System.Drawing; using System.Drawing.Internal; using System.Runtime.InteropServices; using System.ComponentModel; using Microsoft.Win32; using System.Runtime.Versioning; ////// /// When inherited, enumerates the FontFamily /// objects in a collection of fonts. /// public abstract class FontCollection : IDisposable { internal IntPtr nativeFontCollection; internal FontCollection() { nativeFontCollection = IntPtr.Zero; } ////// /// Disposes of this public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ////// protected virtual void Dispose(bool disposing) { // nothing... } /// /// /// public FontFamily[] Families { [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] get { int numSought = 0; int status = SafeNativeMethods.Gdip.GdipGetFontCollectionFamilyCount(new HandleRef(this, nativeFontCollection), out numSought); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); IntPtr[] gpfamilies = new IntPtr[numSought]; int numFound = 0; status = SafeNativeMethods.Gdip.GdipGetFontCollectionFamilyList(new HandleRef(this, nativeFontCollection), numSought, gpfamilies, out numFound); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); Debug.Assert(numSought == numFound, "GDI+ can't give a straight answer about how many fonts there are"); FontFamily[] families = new FontFamily[numFound]; for (int f = 0; f < numFound; f++) { IntPtr native; SafeNativeMethods.Gdip.GdipCloneFontFamily(new HandleRef(null, (IntPtr)gpfamilies[f]), out native); families[f] = new FontFamily(native); } return families; } } /** * Object cleanup */ ////// Gets the array of ////// objects associated with this . /// /// /// ~FontCollection() { Dispose(false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Allows an object to free resources before the object is /// reclaimed by the Garbage Collector ( ///). ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextModifier.cs
- namescope.cs
- Rule.cs
- DllNotFoundException.cs
- TypeBrowser.xaml.cs
- SchemaNames.cs
- ReadOnlyHierarchicalDataSource.cs
- TypefaceCollection.cs
- WS2007FederationHttpBindingCollectionElement.cs
- DataList.cs
- ErrorInfoXmlDocument.cs
- XmlMembersMapping.cs
- EditorPart.cs
- HttpServerVarsCollection.cs
- FileClassifier.cs
- SrgsElementList.cs
- AuthorizationRuleCollection.cs
- UniqueIdentifierService.cs
- DirectoryInfo.cs
- TextEditorSelection.cs
- GeometryDrawing.cs
- PolicyManager.cs
- DefaultBinder.cs
- Int32CollectionValueSerializer.cs
- ListItemConverter.cs
- ObjectMemberMapping.cs
- ExchangeUtilities.cs
- EventLogStatus.cs
- PeerEndPoint.cs
- AddInActivator.cs
- XmlSchemaComplexType.cs
- BulletDecorator.cs
- Internal.cs
- Point4DConverter.cs
- MsmqProcessProtocolHandler.cs
- SortExpressionBuilder.cs
- _Events.cs
- SmtpReplyReader.cs
- HtmlTableRowCollection.cs
- CallbackValidator.cs
- GeometryModel3D.cs
- SQlBooleanStorage.cs
- FontFaceLayoutInfo.cs
- InputScopeConverter.cs
- ConnectionPoint.cs
- Interlocked.cs
- CommandArguments.cs
- Descriptor.cs
- SuppressIldasmAttribute.cs
- XamlWrapperReaders.cs
- BasicKeyConstraint.cs
- AuthenticationModeHelper.cs
- BulletChrome.cs
- initElementDictionary.cs
- DataGridViewColumnConverter.cs
- DataMisalignedException.cs
- DbConnectionStringCommon.cs
- SmtpMail.cs
- login.cs
- XmlDataSourceView.cs
- PackageRelationshipCollection.cs
- ProtectedProviderSettings.cs
- ProfileProvider.cs
- InvalidPropValue.cs
- BevelBitmapEffect.cs
- RadioButtonList.cs
- BookmarkUndoUnit.cs
- ThreadPool.cs
- DataDesignUtil.cs
- Overlapped.cs
- CallbackHandler.cs
- EndpointReference.cs
- ConfigurationStrings.cs
- AssemblyBuilder.cs
- DataKeyCollection.cs
- NativeMethodsCLR.cs
- AxHost.cs
- ValidationRule.cs
- sqlinternaltransaction.cs
- DataStreams.cs
- TypeDependencyAttribute.cs
- ResourceReferenceKeyNotFoundException.cs
- Thread.cs
- ObjectItemCollection.cs
- DictionaryBase.cs
- HttpRequestCacheValidator.cs
- Inflater.cs
- QueryProcessor.cs
- SystemGatewayIPAddressInformation.cs
- MimeTypePropertyAttribute.cs
- TransportChannelFactory.cs
- ChtmlMobileTextWriter.cs
- XmlNodeComparer.cs
- EmbeddedMailObjectsCollection.cs
- PinnedBufferMemoryStream.cs
- SafeRightsManagementPubHandle.cs
- GlobalizationAssembly.cs
- EncoderParameters.cs
- SystemException.cs
- ExtractedStateEntry.cs