Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / RtfToken.cs / 1305600 / RtfToken.cs
//---------------------------------------------------------------------------- // // File: RtfToken.cs // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: Rtf token that will specify the rtf token type, control and name. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// Rtf token that include rtf token type, control, name and parameter value. /// internal class RtfToken { #region Internal Consts //----------------------------------------------------- // // Internal Consts // //----------------------------------------------------- internal const long INVALID_PARAMETER = 0x10000000; #endregion Internal Consts //------------------------------------------------------ // // Constructors // //----------------------------------------------------- #region Constructors ////// /// internal RtfToken() { } #endregion Constructors //------------------------------------------------------ // // Internal Methods // //------------------------------------------------------ #region Internal Methods internal void Empty() { _type = RtfTokenType.TokenInvalid; _rtfControlWordInfo = null; _parameter = INVALID_PARAMETER; _text = ""; } #endregion Internal Methods //----------------------------------------------------- // // Internal Properties // //------------------------------------------------------ #region Internal Properties internal RtfTokenType Type { get { return _type; } set { _type = value; } } internal RtfControlWordInfo RtfControlWordInfo { get { return _rtfControlWordInfo; } set { _rtfControlWordInfo = value; } } internal long Parameter { get { return HasParameter ? _parameter : 0; } set { _parameter = value; } } internal string Text { get { return _text; } set { _text = value; } } internal long ToggleValue { get { return HasParameter ? Parameter : 1; } } internal bool FlagValue { get { return (!HasParameter || (HasParameter && Parameter > 0) ? true : false); } } internal bool HasParameter { get { return _parameter != INVALID_PARAMETER; } } #endregion Internal Properties //----------------------------------------------------- // // Private Fields // //----------------------------------------------------- #region Private Fields private RtfTokenType _type; private RtfControlWordInfo _rtfControlWordInfo; private long _parameter; private string _text; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: RtfToken.cs // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: Rtf token that will specify the rtf token type, control and name. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// Rtf token that include rtf token type, control, name and parameter value. /// internal class RtfToken { #region Internal Consts //----------------------------------------------------- // // Internal Consts // //----------------------------------------------------- internal const long INVALID_PARAMETER = 0x10000000; #endregion Internal Consts //------------------------------------------------------ // // Constructors // //----------------------------------------------------- #region Constructors ////// /// internal RtfToken() { } #endregion Constructors //------------------------------------------------------ // // Internal Methods // //------------------------------------------------------ #region Internal Methods internal void Empty() { _type = RtfTokenType.TokenInvalid; _rtfControlWordInfo = null; _parameter = INVALID_PARAMETER; _text = ""; } #endregion Internal Methods //----------------------------------------------------- // // Internal Properties // //------------------------------------------------------ #region Internal Properties internal RtfTokenType Type { get { return _type; } set { _type = value; } } internal RtfControlWordInfo RtfControlWordInfo { get { return _rtfControlWordInfo; } set { _rtfControlWordInfo = value; } } internal long Parameter { get { return HasParameter ? _parameter : 0; } set { _parameter = value; } } internal string Text { get { return _text; } set { _text = value; } } internal long ToggleValue { get { return HasParameter ? Parameter : 1; } } internal bool FlagValue { get { return (!HasParameter || (HasParameter && Parameter > 0) ? true : false); } } internal bool HasParameter { get { return _parameter != INVALID_PARAMETER; } } #endregion Internal Properties //----------------------------------------------------- // // Private Fields // //----------------------------------------------------- #region Private Fields private RtfTokenType _type; private RtfControlWordInfo _rtfControlWordInfo; private long _parameter; private string _text; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CalendarKeyboardHelper.cs
- CodeCastExpression.cs
- EntityProviderServices.cs
- CmsInterop.cs
- GestureRecognitionResult.cs
- CheckableControlBaseAdapter.cs
- TagElement.cs
- SerializationSectionGroup.cs
- ParameterCollectionEditor.cs
- ScrollBarAutomationPeer.cs
- CultureInfoConverter.cs
- COM2TypeInfoProcessor.cs
- DataGridHeaderBorder.cs
- LifetimeServices.cs
- SubMenuStyleCollectionEditor.cs
- EditingCommands.cs
- AssociationSet.cs
- XmlElementList.cs
- ComboBoxAutomationPeer.cs
- RoleManagerSection.cs
- _NetworkingPerfCounters.cs
- HitTestParameters.cs
- ContractUtils.cs
- TimeZoneNotFoundException.cs
- NavigationProperty.cs
- CodeCatchClauseCollection.cs
- DataGrid.cs
- EditorPartChrome.cs
- storepermissionattribute.cs
- ShaperBuffers.cs
- BitmapImage.cs
- TextCharacters.cs
- PropertyGroupDescription.cs
- PointCollection.cs
- MarkupCompiler.cs
- AutoSizeToolBoxItem.cs
- PageAsyncTask.cs
- Socket.cs
- ListItem.cs
- DbConnectionPoolOptions.cs
- TextOnlyOutput.cs
- HostingEnvironmentWrapper.cs
- WebBrowserSiteBase.cs
- System.Data.OracleClient_BID.cs
- XmlWhitespace.cs
- HtmlShim.cs
- EventPropertyMap.cs
- AutomationPatternInfo.cs
- FontDriver.cs
- PathData.cs
- RangeValueProviderWrapper.cs
- ObjectQueryExecutionPlan.cs
- XamlWriter.cs
- OdbcInfoMessageEvent.cs
- MailWebEventProvider.cs
- NonVisualControlAttribute.cs
- GridViewRow.cs
- OverrideMode.cs
- NavigationFailedEventArgs.cs
- WindowShowOrOpenTracker.cs
- SystemWebCachingSectionGroup.cs
- Maps.cs
- RadioButtonPopupAdapter.cs
- TimeSpanValidator.cs
- Storyboard.cs
- TableFieldsEditor.cs
- SystemTcpConnection.cs
- MessageTraceRecord.cs
- LinqToSqlWrapper.cs
- XhtmlTextWriter.cs
- Latin1Encoding.cs
- FolderBrowserDialog.cs
- Config.cs
- Region.cs
- PrintDocument.cs
- GraphicsContext.cs
- HybridObjectCache.cs
- TextTreeRootNode.cs
- XmlRootAttribute.cs
- AlignmentYValidation.cs
- TabControlEvent.cs
- SystemDiagnosticsSection.cs
- CombinedGeometry.cs
- PocoEntityKeyStrategy.cs
- Light.cs
- GlyphingCache.cs
- TextServicesLoader.cs
- QilNode.cs
- XmlSchemaFacet.cs
- ResourceManager.cs
- CompositeFontInfo.cs
- Exceptions.cs
- DataGridViewRowConverter.cs
- ColorTransformHelper.cs
- SystemIPv4InterfaceProperties.cs
- XmlSchemaSequence.cs
- CookieProtection.cs
- PreviousTrackingServiceAttribute.cs
- TypeElement.cs
- ApplicationServicesHostFactory.cs