Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CommonUI / System / Drawing / Advanced / PrivateFontCollection.cs / 2 / PrivateFontCollection.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.Security; using System.Security.Permissions; using System.Globalization; ////// /// Encapsulates a collection of public sealed class PrivateFontCollection : FontCollection { ///objecs. /// /// /// public PrivateFontCollection() { nativeFontCollection = IntPtr.Zero; int status = SafeNativeMethods.Gdip.GdipNewPrivateFontCollection(out nativeFontCollection); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); } ////// Initializes a new instance of the ///class. /// /// /// protected override void Dispose(bool disposing) { if (nativeFontCollection != IntPtr.Zero) { try{ #if DEBUG int status = #endif SafeNativeMethods.Gdip.GdipDeletePrivateFontCollection(out nativeFontCollection); #if DEBUG Debug.Assert(status == SafeNativeMethods.Gdip.Ok, "GDI+ returned an error status: " + status.ToString(CultureInfo.InvariantCulture)); #endif } catch( Exception ex ){ if( ClientUtils.IsSecurityOrCriticalException( ex ) ) { throw; } Debug.Fail( "Exception thrown during Dispose: " + ex.ToString() ); } finally{ nativeFontCollection = IntPtr.Zero; } } base.Dispose(disposing); } ////// Cleans up Windows resources for this /// ///. /// /// /// public void AddFontFile (string filename) { IntSecurity.DemandReadFileIO(filename); int status = SafeNativeMethods.Gdip.GdipPrivateAddFontFile(new HandleRef(this, nativeFontCollection), filename); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); // Register private font with GDI as well so pure GDI-based controls (TextBox, Button for instance) can access it. SafeNativeMethods.AddFontFile( filename ); } // public void AddMemoryFont (IntPtr memory, int length) { IntSecurity.ObjectFromWin32Handle.Demand(); int status = SafeNativeMethods.Gdip.GdipPrivateAddMemoryFont(new HandleRef(this, nativeFontCollection), new HandleRef(null, memory), length); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Adds a font from the specified file to /// this ///. /// // 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.Security; using System.Security.Permissions; using System.Globalization; ////// /// Encapsulates a collection of public sealed class PrivateFontCollection : FontCollection { ///objecs. /// /// /// public PrivateFontCollection() { nativeFontCollection = IntPtr.Zero; int status = SafeNativeMethods.Gdip.GdipNewPrivateFontCollection(out nativeFontCollection); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); } ////// Initializes a new instance of the ///class. /// /// /// protected override void Dispose(bool disposing) { if (nativeFontCollection != IntPtr.Zero) { try{ #if DEBUG int status = #endif SafeNativeMethods.Gdip.GdipDeletePrivateFontCollection(out nativeFontCollection); #if DEBUG Debug.Assert(status == SafeNativeMethods.Gdip.Ok, "GDI+ returned an error status: " + status.ToString(CultureInfo.InvariantCulture)); #endif } catch( Exception ex ){ if( ClientUtils.IsSecurityOrCriticalException( ex ) ) { throw; } Debug.Fail( "Exception thrown during Dispose: " + ex.ToString() ); } finally{ nativeFontCollection = IntPtr.Zero; } } base.Dispose(disposing); } ////// Cleans up Windows resources for this /// ///. /// /// /// public void AddFontFile (string filename) { IntSecurity.DemandReadFileIO(filename); int status = SafeNativeMethods.Gdip.GdipPrivateAddFontFile(new HandleRef(this, nativeFontCollection), filename); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); // Register private font with GDI as well so pure GDI-based controls (TextBox, Button for instance) can access it. SafeNativeMethods.AddFontFile( filename ); } // public void AddMemoryFont (IntPtr memory, int length) { IntSecurity.ObjectFromWin32Handle.Demand(); int status = SafeNativeMethods.Gdip.GdipPrivateAddMemoryFont(new HandleRef(this, nativeFontCollection), new HandleRef(null, memory), length); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Adds a font from the specified file to /// this ///. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PrintDialog.cs
- DashStyle.cs
- DataPagerCommandEventArgs.cs
- Timer.cs
- securitycriticaldata.cs
- GlyphingCache.cs
- CoTaskMemHandle.cs
- CryptographicAttribute.cs
- HostTimeoutsElement.cs
- XsltLibrary.cs
- SmiRequestExecutor.cs
- exports.cs
- RemotingConfiguration.cs
- TargetException.cs
- XmlReaderDelegator.cs
- ItemContainerPattern.cs
- RTLAwareMessageBox.cs
- ExecutionContext.cs
- UnSafeCharBuffer.cs
- HtmlTernaryTree.cs
- SqlDataSourceStatusEventArgs.cs
- CharEntityEncoderFallback.cs
- DataListDesigner.cs
- ToolBar.cs
- VBCodeProvider.cs
- MoveSizeWinEventHandler.cs
- ArraySortHelper.cs
- AudioDeviceOut.cs
- ToolstripProfessionalRenderer.cs
- PathSegmentCollection.cs
- SubpageParagraph.cs
- XmlReflectionMember.cs
- XmlStringTable.cs
- ValidationEventArgs.cs
- UdpDiscoveryMessageFilter.cs
- FixedPage.cs
- FixedTextPointer.cs
- EventLogStatus.cs
- HighlightComponent.cs
- XmlMapping.cs
- ElementMarkupObject.cs
- BlobPersonalizationState.cs
- ValueChangedEventManager.cs
- ResourceManager.cs
- ObjectParameterCollection.cs
- ProtocolsConfigurationEntry.cs
- GridEntry.cs
- ObjectPersistData.cs
- CharEnumerator.cs
- ObjectDisposedException.cs
- ControlPager.cs
- SatelliteContractVersionAttribute.cs
- ToolTipAutomationPeer.cs
- DataServiceException.cs
- StringBuilder.cs
- ChtmlTextBoxAdapter.cs
- ReferenceAssemblyAttribute.cs
- DateTimePicker.cs
- GridPattern.cs
- HandleDictionary.cs
- InputLangChangeEvent.cs
- ButtonChrome.cs
- EventRecord.cs
- PackageFilter.cs
- ColumnWidthChangingEvent.cs
- WebControlParameterProxy.cs
- RuntimeHandles.cs
- CheckBoxList.cs
- DropSource.cs
- Floater.cs
- LogRecordSequence.cs
- WizardStepBase.cs
- MetadataUtil.cs
- HttpStreams.cs
- ResourceSetExpression.cs
- LabelEditEvent.cs
- CodeTypeReference.cs
- EndpointAddressAugust2004.cs
- Function.cs
- UnhandledExceptionEventArgs.cs
- FrameAutomationPeer.cs
- TreeNodeClickEventArgs.cs
- UnsafeNativeMethods.cs
- XpsS0ValidatingLoader.cs
- NavigationWindowAutomationPeer.cs
- Brushes.cs
- CommandValueSerializer.cs
- DependencyProperty.cs
- BmpBitmapEncoder.cs
- RemoveStoryboard.cs
- AttributeCollection.cs
- DbConnectionPool.cs
- RemotingConfigParser.cs
- SolidColorBrush.cs
- UIAgentRequest.cs
- Int16AnimationUsingKeyFrames.cs
- RoutedEvent.cs
- GridViewSortEventArgs.cs
- SingleTagSectionHandler.cs
- MouseButton.cs