Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Generated / TextDecoration.cs / 1 / TextDecoration.cs
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// This file was generated, please do not edit it directly.
//
// Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information.
//
//---------------------------------------------------------------------------
using MS.Internal.PresentationCore;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Markup;
using System.Windows.Converters;
using MS.Internal.Collections;
using MS.Utility;
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
// These types are aliased to match the unamanaged names used in interop
using BOOL = System.UInt32;
using WORD = System.UInt16;
using Float = System.Single;
namespace System.Windows
{
sealed partial class TextDecoration : Animatable
{
//-----------------------------------------------------
//
// Public Methods
//
//-----------------------------------------------------
#region Public Methods
///
/// Shadows inherited Clone() with a strongly typed
/// version for convenience.
///
public new TextDecoration Clone()
{
return (TextDecoration)base.Clone();
}
///
/// Shadows inherited CloneCurrentValue() with a strongly typed
/// version for convenience.
///
public new TextDecoration CloneCurrentValue()
{
return (TextDecoration)base.CloneCurrentValue();
}
#endregion Public Methods
//------------------------------------------------------
//
// Public Properties
//
//-----------------------------------------------------
#region Public Properties
///
/// Pen - Pen. Default value is null.
/// The pen used to draw the text decoration
///
public Pen Pen
{
get
{
return (Pen) GetValue(PenProperty);
}
set
{
SetValueInternal(PenProperty, value);
}
}
///
/// PenOffset - double. Default value is 0.0.
/// The offset of the text decoration to the location specified.
///
public double PenOffset
{
get
{
return (double) GetValue(PenOffsetProperty);
}
set
{
SetValueInternal(PenOffsetProperty, value);
}
}
///
/// PenOffsetUnit - TextDecorationUnit. Default value is TextDecorationUnit.FontRecommended.
/// The unit type we use to interpret the offset value.
///
public TextDecorationUnit PenOffsetUnit
{
get
{
return (TextDecorationUnit) GetValue(PenOffsetUnitProperty);
}
set
{
SetValueInternal(PenOffsetUnitProperty, value);
}
}
///
/// PenThicknessUnit - TextDecorationUnit. Default value is TextDecorationUnit.FontRecommended.
/// The unit type we use to interpret the thickness value.
///
public TextDecorationUnit PenThicknessUnit
{
get
{
return (TextDecorationUnit) GetValue(PenThicknessUnitProperty);
}
set
{
SetValueInternal(PenThicknessUnitProperty, value);
}
}
///
/// Location - TextDecorationLocation. Default value is TextDecorationLocation.Underline.
/// The Location of the text decorations
///
public TextDecorationLocation Location
{
get
{
return (TextDecorationLocation) GetValue(LocationProperty);
}
set
{
SetValueInternal(LocationProperty, value);
}
}
#endregion Public Properties
//------------------------------------------------------
//
// Protected Methods
//
//------------------------------------------------------
#region Protected Methods
///
/// Implementation of Freezable.CreateInstanceCore .
///
/// The new Freezable.
protected override Freezable CreateInstanceCore()
{
return new TextDecoration();
}
#endregion ProtectedMethods
//-----------------------------------------------------
//
// Internal Methods
//
//------------------------------------------------------
#region Internal Methods
#endregion Internal Methods
//-----------------------------------------------------
//
// Internal Properties
//
//-----------------------------------------------------
#region Internal Properties
#endregion Internal Properties
//-----------------------------------------------------
//
// Dependency Properties
//
//------------------------------------------------------
#region Dependency Properties
///
/// The DependencyProperty for the TextDecoration.Pen property.
///
public static readonly DependencyProperty PenProperty;
///
/// The DependencyProperty for the TextDecoration.PenOffset property.
///
public static readonly DependencyProperty PenOffsetProperty;
///
/// The DependencyProperty for the TextDecoration.PenOffsetUnit property.
///
public static readonly DependencyProperty PenOffsetUnitProperty;
///
/// The DependencyProperty for the TextDecoration.PenThicknessUnit property.
///
public static readonly DependencyProperty PenThicknessUnitProperty;
///
/// The DependencyProperty for the TextDecoration.Location property.
///
public static readonly DependencyProperty LocationProperty;
#endregion Dependency Properties
//-----------------------------------------------------
//
// Internal Fields
//
//------------------------------------------------------
#region Internal Fields
internal const double c_PenOffset = 0.0;
internal const TextDecorationUnit c_PenOffsetUnit = TextDecorationUnit.FontRecommended;
internal const TextDecorationUnit c_PenThicknessUnit = TextDecorationUnit.FontRecommended;
internal const TextDecorationLocation c_Location = TextDecorationLocation.Underline;
#endregion Internal Fields
#region Constructors
//------------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
static TextDecoration()
{
// We check our static default fields which are of type Freezable
// to make sure that they are not mutable, otherwise we will throw
// if these get touched by more than one thread in the lifetime
// of your app. (Windows OS Bug #947272)
//
// Initializations
Type typeofThis = typeof(TextDecoration);
PenProperty =
RegisterProperty("Pen",
typeof(Pen),
typeofThis,
null,
null,
null,
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
PenOffsetProperty =
RegisterProperty("PenOffset",
typeof(double),
typeofThis,
0.0,
null,
null,
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
PenOffsetUnitProperty =
RegisterProperty("PenOffsetUnit",
typeof(TextDecorationUnit),
typeofThis,
TextDecorationUnit.FontRecommended,
null,
new ValidateValueCallback(System.Windows.ValidateEnums.IsTextDecorationUnitValid),
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
PenThicknessUnitProperty =
RegisterProperty("PenThicknessUnit",
typeof(TextDecorationUnit),
typeofThis,
TextDecorationUnit.FontRecommended,
null,
new ValidateValueCallback(System.Windows.ValidateEnums.IsTextDecorationUnitValid),
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
LocationProperty =
RegisterProperty("Location",
typeof(TextDecorationLocation),
typeofThis,
TextDecorationLocation.Underline,
null,
new ValidateValueCallback(System.Windows.ValidateEnums.IsTextDecorationLocationValid),
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
}
#endregion Constructors
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// This file was generated, please do not edit it directly.
//
// Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information.
//
//---------------------------------------------------------------------------
using MS.Internal.PresentationCore;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Markup;
using System.Windows.Converters;
using MS.Internal.Collections;
using MS.Utility;
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
// These types are aliased to match the unamanaged names used in interop
using BOOL = System.UInt32;
using WORD = System.UInt16;
using Float = System.Single;
namespace System.Windows
{
sealed partial class TextDecoration : Animatable
{
//-----------------------------------------------------
//
// Public Methods
//
//-----------------------------------------------------
#region Public Methods
///
/// Shadows inherited Clone() with a strongly typed
/// version for convenience.
///
public new TextDecoration Clone()
{
return (TextDecoration)base.Clone();
}
///
/// Shadows inherited CloneCurrentValue() with a strongly typed
/// version for convenience.
///
public new TextDecoration CloneCurrentValue()
{
return (TextDecoration)base.CloneCurrentValue();
}
#endregion Public Methods
//------------------------------------------------------
//
// Public Properties
//
//-----------------------------------------------------
#region Public Properties
///
/// Pen - Pen. Default value is null.
/// The pen used to draw the text decoration
///
public Pen Pen
{
get
{
return (Pen) GetValue(PenProperty);
}
set
{
SetValueInternal(PenProperty, value);
}
}
///
/// PenOffset - double. Default value is 0.0.
/// The offset of the text decoration to the location specified.
///
public double PenOffset
{
get
{
return (double) GetValue(PenOffsetProperty);
}
set
{
SetValueInternal(PenOffsetProperty, value);
}
}
///
/// PenOffsetUnit - TextDecorationUnit. Default value is TextDecorationUnit.FontRecommended.
/// The unit type we use to interpret the offset value.
///
public TextDecorationUnit PenOffsetUnit
{
get
{
return (TextDecorationUnit) GetValue(PenOffsetUnitProperty);
}
set
{
SetValueInternal(PenOffsetUnitProperty, value);
}
}
///
/// PenThicknessUnit - TextDecorationUnit. Default value is TextDecorationUnit.FontRecommended.
/// The unit type we use to interpret the thickness value.
///
public TextDecorationUnit PenThicknessUnit
{
get
{
return (TextDecorationUnit) GetValue(PenThicknessUnitProperty);
}
set
{
SetValueInternal(PenThicknessUnitProperty, value);
}
}
///
/// Location - TextDecorationLocation. Default value is TextDecorationLocation.Underline.
/// The Location of the text decorations
///
public TextDecorationLocation Location
{
get
{
return (TextDecorationLocation) GetValue(LocationProperty);
}
set
{
SetValueInternal(LocationProperty, value);
}
}
#endregion Public Properties
//------------------------------------------------------
//
// Protected Methods
//
//------------------------------------------------------
#region Protected Methods
///
/// Implementation of Freezable.CreateInstanceCore .
///
/// The new Freezable.
protected override Freezable CreateInstanceCore()
{
return new TextDecoration();
}
#endregion ProtectedMethods
//-----------------------------------------------------
//
// Internal Methods
//
//------------------------------------------------------
#region Internal Methods
#endregion Internal Methods
//-----------------------------------------------------
//
// Internal Properties
//
//-----------------------------------------------------
#region Internal Properties
#endregion Internal Properties
//-----------------------------------------------------
//
// Dependency Properties
//
//------------------------------------------------------
#region Dependency Properties
///
/// The DependencyProperty for the TextDecoration.Pen property.
///
public static readonly DependencyProperty PenProperty;
///
/// The DependencyProperty for the TextDecoration.PenOffset property.
///
public static readonly DependencyProperty PenOffsetProperty;
///
/// The DependencyProperty for the TextDecoration.PenOffsetUnit property.
///
public static readonly DependencyProperty PenOffsetUnitProperty;
///
/// The DependencyProperty for the TextDecoration.PenThicknessUnit property.
///
public static readonly DependencyProperty PenThicknessUnitProperty;
///
/// The DependencyProperty for the TextDecoration.Location property.
///
public static readonly DependencyProperty LocationProperty;
#endregion Dependency Properties
//-----------------------------------------------------
//
// Internal Fields
//
//------------------------------------------------------
#region Internal Fields
internal const double c_PenOffset = 0.0;
internal const TextDecorationUnit c_PenOffsetUnit = TextDecorationUnit.FontRecommended;
internal const TextDecorationUnit c_PenThicknessUnit = TextDecorationUnit.FontRecommended;
internal const TextDecorationLocation c_Location = TextDecorationLocation.Underline;
#endregion Internal Fields
#region Constructors
//------------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
static TextDecoration()
{
// We check our static default fields which are of type Freezable
// to make sure that they are not mutable, otherwise we will throw
// if these get touched by more than one thread in the lifetime
// of your app. (Windows OS Bug #947272)
//
// Initializations
Type typeofThis = typeof(TextDecoration);
PenProperty =
RegisterProperty("Pen",
typeof(Pen),
typeofThis,
null,
null,
null,
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
PenOffsetProperty =
RegisterProperty("PenOffset",
typeof(double),
typeofThis,
0.0,
null,
null,
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
PenOffsetUnitProperty =
RegisterProperty("PenOffsetUnit",
typeof(TextDecorationUnit),
typeofThis,
TextDecorationUnit.FontRecommended,
null,
new ValidateValueCallback(System.Windows.ValidateEnums.IsTextDecorationUnitValid),
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
PenThicknessUnitProperty =
RegisterProperty("PenThicknessUnit",
typeof(TextDecorationUnit),
typeofThis,
TextDecorationUnit.FontRecommended,
null,
new ValidateValueCallback(System.Windows.ValidateEnums.IsTextDecorationUnitValid),
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
LocationProperty =
RegisterProperty("Location",
typeof(TextDecorationLocation),
typeofThis,
TextDecorationLocation.Underline,
null,
new ValidateValueCallback(System.Windows.ValidateEnums.IsTextDecorationLocationValid),
/* isIndependentlyAnimated = */ false,
/* coerceValueCallback */ null);
}
#endregion Constructors
}
}
// 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
- CompensationHandlingFilter.cs
- InkSerializer.cs
- SectionRecord.cs
- DynamicMethod.cs
- ChannelSinkStacks.cs
- XmlTypeAttribute.cs
- SettingsContext.cs
- PackagePartCollection.cs
- PointLightBase.cs
- NativeMethods.cs
- CallSiteOps.cs
- MultiTrigger.cs
- NativeMethods.cs
- DocumentSequenceHighlightLayer.cs
- SmiEventSink_Default.cs
- PropertyTabChangedEvent.cs
- PermissionSetTriple.cs
- _SecureChannel.cs
- KeyboardNavigation.cs
- XmlCharCheckingWriter.cs
- DecoderBestFitFallback.cs
- AssociatedControlConverter.cs
- ConditionalAttribute.cs
- FeatureManager.cs
- BindingExpressionUncommonField.cs
- InertiaExpansionBehavior.cs
- OleDbParameterCollection.cs
- DesignTimeVisibleAttribute.cs
- RtfToXamlReader.cs
- basevalidator.cs
- TabPage.cs
- SingleKeyFrameCollection.cs
- CallContext.cs
- TextSpanModifier.cs
- ProcessThread.cs
- ApplicationSecurityInfo.cs
- AsmxEndpointPickerExtension.cs
- CmsInterop.cs
- CompilerGeneratedAttribute.cs
- MailSettingsSection.cs
- handlecollector.cs
- HMACSHA1.cs
- IPCCacheManager.cs
- HandlerBase.cs
- BookmarkNameHelper.cs
- Graphics.cs
- WCFBuildProvider.cs
- MenuItemCollection.cs
- OrderedEnumerableRowCollection.cs
- DirectoryObjectSecurity.cs
- ReachDocumentPageSerializerAsync.cs
- RequestUriProcessor.cs
- PeerNameRegistration.cs
- QueryCacheKey.cs
- ProfileInfo.cs
- UnaryExpression.cs
- TransformValueSerializer.cs
- DocumentViewerAutomationPeer.cs
- PerformanceCounterScope.cs
- ScriptControlManager.cs
- DataRelationPropertyDescriptor.cs
- PolicyManager.cs
- _NegotiateClient.cs
- Page.cs
- ElementHostAutomationPeer.cs
- ColorContext.cs
- httpstaticobjectscollection.cs
- itemelement.cs
- SecurityManager.cs
- OdbcUtils.cs
- FastPropertyAccessor.cs
- ApplicationDirectoryMembershipCondition.cs
- SoapCodeExporter.cs
- ArcSegment.cs
- PrintDialog.cs
- MeshGeometry3D.cs
- ExpressionCopier.cs
- UserControlFileEditor.cs
- WebPartDescriptionCollection.cs
- Label.cs
- WorkflowApplicationUnloadedException.cs
- ResourceDefaultValueAttribute.cs
- Formatter.cs
- IfAction.cs
- SqlProfileProvider.cs
- ExpressionBuilderContext.cs
- SocketConnection.cs
- PrincipalPermission.cs
- AbandonedMutexException.cs
- PaginationProgressEventArgs.cs
- ConsumerConnectionPointCollection.cs
- Normalizer.cs
- Parser.cs
- StateDesigner.CommentLayoutGlyph.cs
- WithStatement.cs
- HttpRuntime.cs
- LowerCaseStringConverter.cs
- DashStyles.cs
- InheritanceContextHelper.cs
- XmlSchemaSimpleContentRestriction.cs