Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / FontStyle.cs / 1 / FontStyle.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: FontStyle structure. // // History: // 01/25/2005 mleonov - Converted FontStyle from enum to a value type and moved it to a separate file. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Diagnostics; namespace System.Windows { ////// FontStyle structure describes the style of a font face, such as Normal, Italic or Oblique. /// [TypeConverter(typeof(FontStyleConverter))] [Localizability(LocalizationCategory.None)] public struct FontStyle : IFormattable { internal FontStyle(int style) { Debug.Assert(0 <= style && style <= 2); _style = style; } ////// Checks whether two font weight objects are equal. /// /// First object to compare. /// Second object to compare. ///Returns true when the font weight values are equal for both objects, /// and false otherwise. public static bool operator ==(FontStyle left, FontStyle right) { return left._style == right._style; } ////// Checks whether two font weight objects are not equal. /// /// First object to compare. /// Second object to compare. ///Returns false when the font weight values are equal for both objects, /// and true otherwise. public static bool operator !=(FontStyle left, FontStyle right) { return !(left == right); } ////// Checks whether the object is equal to another FontStyle object. /// /// FontStyle object to compare with. ///Returns true when the object is equal to the input object, /// and false otherwise. public bool Equals(FontStyle obj) { return this == obj; } ////// Checks whether an object is equal to another character hit object. /// /// FontStyle object to compare with. ///Returns true when the object is equal to the input object, /// and false otherwise. public override bool Equals(object obj) { if (!(obj is FontStyle)) return false; return this == (FontStyle)obj; } ////// Compute hash code for this object. /// ///A 32-bit signed integer hash code. public override int GetHashCode() { return _style; } ////// Creates a string representation of this object based on the current culture. /// ////// A string representation of this object. /// public override string ToString() { // Delegate to the internal method which implements all ToString calls. return ConvertToString(null, null); } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// string IFormattable.ToString(string format, IFormatProvider provider) { // Delegate to the internal method which implements all ToString calls. return ConvertToString(format, provider); } ////// This method is used only in type converter for construction via reflection. /// ///THe value of _style member. internal int GetStyleForInternalConstruction() { Debug.Assert(0 <= _style && _style <= 2); return _style; } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// private string ConvertToString(string format, IFormatProvider provider) { if (_style == 0) return "Normal"; if (_style == 1) return "Oblique"; Debug.Assert(_style == 2); return "Italic"; } private int _style; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: FontStyle structure. // // History: // 01/25/2005 mleonov - Converted FontStyle from enum to a value type and moved it to a separate file. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Diagnostics; namespace System.Windows { ////// FontStyle structure describes the style of a font face, such as Normal, Italic or Oblique. /// [TypeConverter(typeof(FontStyleConverter))] [Localizability(LocalizationCategory.None)] public struct FontStyle : IFormattable { internal FontStyle(int style) { Debug.Assert(0 <= style && style <= 2); _style = style; } ////// Checks whether two font weight objects are equal. /// /// First object to compare. /// Second object to compare. ///Returns true when the font weight values are equal for both objects, /// and false otherwise. public static bool operator ==(FontStyle left, FontStyle right) { return left._style == right._style; } ////// Checks whether two font weight objects are not equal. /// /// First object to compare. /// Second object to compare. ///Returns false when the font weight values are equal for both objects, /// and true otherwise. public static bool operator !=(FontStyle left, FontStyle right) { return !(left == right); } ////// Checks whether the object is equal to another FontStyle object. /// /// FontStyle object to compare with. ///Returns true when the object is equal to the input object, /// and false otherwise. public bool Equals(FontStyle obj) { return this == obj; } ////// Checks whether an object is equal to another character hit object. /// /// FontStyle object to compare with. ///Returns true when the object is equal to the input object, /// and false otherwise. public override bool Equals(object obj) { if (!(obj is FontStyle)) return false; return this == (FontStyle)obj; } ////// Compute hash code for this object. /// ///A 32-bit signed integer hash code. public override int GetHashCode() { return _style; } ////// Creates a string representation of this object based on the current culture. /// ////// A string representation of this object. /// public override string ToString() { // Delegate to the internal method which implements all ToString calls. return ConvertToString(null, null); } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// string IFormattable.ToString(string format, IFormatProvider provider) { // Delegate to the internal method which implements all ToString calls. return ConvertToString(format, provider); } ////// This method is used only in type converter for construction via reflection. /// ///THe value of _style member. internal int GetStyleForInternalConstruction() { Debug.Assert(0 <= _style && _style <= 2); return _style; } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// private string ConvertToString(string format, IFormatProvider provider) { if (_style == 0) return "Normal"; if (_style == 1) return "Oblique"; Debug.Assert(_style == 2); return "Italic"; } private int _style; } } // 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
- nulltextnavigator.cs
- Type.cs
- CookielessData.cs
- SymmetricAlgorithm.cs
- TemplateParser.cs
- TabPanel.cs
- Content.cs
- FixedFindEngine.cs
- SoapConverter.cs
- XmlValueConverter.cs
- EntityClassGenerator.cs
- FlowDocumentFormatter.cs
- PersonalizationStateQuery.cs
- BlurEffect.cs
- IsolatedStorageFileStream.cs
- TemplateComponentConnector.cs
- ToolStripControlHost.cs
- AppDomain.cs
- ResourceReader.cs
- PanelDesigner.cs
- PeerNameResolver.cs
- CodeValidator.cs
- CqlBlock.cs
- WindowsStartMenu.cs
- ObjectItemCollection.cs
- GetImportFileNameRequest.cs
- LingerOption.cs
- BinaryNode.cs
- ForEachAction.cs
- CharAnimationUsingKeyFrames.cs
- _PooledStream.cs
- ModuleConfigurationInfo.cs
- SecurityManager.cs
- SequentialOutput.cs
- BindStream.cs
- FileEnumerator.cs
- securitycriticaldataClass.cs
- MetadataSource.cs
- DistinctQueryOperator.cs
- ClientTarget.cs
- XPathDocumentIterator.cs
- DecodeHelper.cs
- ProfileSettings.cs
- Privilege.cs
- AnchorEditor.cs
- XmlDataFileEditor.cs
- ModelItemImpl.cs
- SocketElement.cs
- BuildProvidersCompiler.cs
- QuotaExceededException.cs
- SafeRightsManagementSessionHandle.cs
- ItemsControl.cs
- DetailsViewDeletedEventArgs.cs
- InputBuffer.cs
- MetadataPropertyvalue.cs
- ApplicationContext.cs
- ScrollBar.cs
- PathFigureCollectionValueSerializer.cs
- VoiceChangeEventArgs.cs
- SystemWebCachingSectionGroup.cs
- PreProcessInputEventArgs.cs
- DiagnosticStrings.cs
- DataGridDesigner.cs
- Brush.cs
- KeyGesture.cs
- XmlNamespaceMapping.cs
- NativeWindow.cs
- NameObjectCollectionBase.cs
- XmlEnumAttribute.cs
- ObjectRef.cs
- DataGridTableCollection.cs
- _KerberosClient.cs
- CommonProperties.cs
- CrossSiteScriptingValidation.cs
- DeflateStream.cs
- FocusManager.cs
- ObjectSecurity.cs
- TimerElapsedEvenArgs.cs
- ServiceOperationParameter.cs
- TabRenderer.cs
- DataGridViewControlCollection.cs
- TableLayoutSettings.cs
- DataGridViewIntLinkedList.cs
- WhitespaceReader.cs
- DataMember.cs
- HttpListenerContext.cs
- GridView.cs
- TypeValidationEventArgs.cs
- StringUtil.cs
- PermissionSet.cs
- ClientSideProviderDescription.cs
- ScrollItemPattern.cs
- DynamicQueryableWrapper.cs
- SymDocumentType.cs
- ActivityFunc.cs
- oledbmetadatacolumnnames.cs
- ObjectDisposedException.cs
- FactoryMaker.cs
- ZipFileInfoCollection.cs
- PackagingUtilities.cs