Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PostBackTrigger.cs
- Fonts.cs
- SqlInfoMessageEvent.cs
- DateTimeOffset.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- mongolianshape.cs
- WmlMobileTextWriter.cs
- ServiceHostingEnvironmentSection.cs
- HtmlInputButton.cs
- ValidationSummary.cs
- DateTimeConverter2.cs
- ConfigurationLocation.cs
- RemotingConfigParser.cs
- XPathMultyIterator.cs
- Scene3D.cs
- Win32Exception.cs
- SafeCertificateStore.cs
- VisualTreeFlattener.cs
- DataGridViewCellStyleChangedEventArgs.cs
- CapabilitiesRule.cs
- CodeDirectoryCompiler.cs
- XPathMessageContext.cs
- Matrix3DStack.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- StorageEntityTypeMapping.cs
- CodePageUtils.cs
- EventWaitHandleSecurity.cs
- TextClipboardData.cs
- BooleanSwitch.cs
- DataRow.cs
- SqlReferenceCollection.cs
- TraceUtility.cs
- TextRangeEditLists.cs
- XPathAncestorQuery.cs
- ToolboxComponentsCreatedEventArgs.cs
- ObjectReaderCompiler.cs
- DataSourceHelper.cs
- HttpGetProtocolReflector.cs
- CornerRadiusConverter.cs
- XmlQueryOutput.cs
- SafeThemeHandle.cs
- AccessDataSourceView.cs
- Deflater.cs
- SQLDateTimeStorage.cs
- ModuleBuilder.cs
- PointAnimation.cs
- PropertyEmitter.cs
- StoreAnnotationsMap.cs
- SafeNativeMethods.cs
- DesignerOptionService.cs
- ButtonField.cs
- PersonalizationDictionary.cs
- _ConnectOverlappedAsyncResult.cs
- ApplicationServiceHelper.cs
- ImportContext.cs
- DataControlImageButton.cs
- FontNamesConverter.cs
- SiblingIterators.cs
- DocumentXmlWriter.cs
- CharUnicodeInfo.cs
- WindowsPrincipal.cs
- TemplateParser.cs
- WebEvents.cs
- StringPropertyBuilder.cs
- ObjectSelectorEditor.cs
- ConfigXmlWhitespace.cs
- ClientUrlResolverWrapper.cs
- SafeMemoryMappedViewHandle.cs
- ObjectPersistData.cs
- ThrowHelper.cs
- ImmutableObjectAttribute.cs
- BypassElement.cs
- Int16Converter.cs
- ping.cs
- HeaderUtility.cs
- DesignTimeParseData.cs
- TimelineClockCollection.cs
- ListSortDescription.cs
- RegistryExceptionHelper.cs
- ContainerUtilities.cs
- TransformerInfoCollection.cs
- StringUtil.cs
- AccessDataSource.cs
- ExpressionBuilderCollection.cs
- TypedRowHandler.cs
- MeasurementDCInfo.cs
- DataGrid.cs
- TextTreeExtractElementUndoUnit.cs
- LinearQuaternionKeyFrame.cs
- ConfigurationManagerInternal.cs
- UriSectionReader.cs
- WebPartTracker.cs
- MetadataSerializer.cs
- TextFormatter.cs
- DataTemplateKey.cs
- SoapMessage.cs
- BeginStoryboard.cs
- TextContainer.cs
- MachinePropertyVariants.cs
- DispatchChannelSink.cs