Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Animation / FillBehavior.cs / 1 / FillBehavior.cs
//------------------------------------------------------------------------------ // Microsoft Windows Client Platform // Copyright (c) Microsoft Corporation, 2004 // // File: FillBehavior.cs //----------------------------------------------------------------------------- using System.Windows.Media.Animation; namespace System.Windows.Media.Animation { ////// The FillBehavior enumeration is used to indicate how a Timeline will behave /// when it is outside of its active period but its parent is inside its /// active period. /// public enum FillBehavior { ////// Indicates that a Timeline will hold its progress between the period of /// time between the end of its active period and the end of its parents active and /// hold periods. /// HoldEnd, #if IMPLEMENTED // Uncomment when implemented ////// Indicates that a Timeline will hold its initial active progress during the /// period of time between when its parent has become active and it /// becomes active. The Timeline will stop after the completion of /// its own active period. /// HoldBegin, ////// Indicates that a Timeline will hold its progress both before and after /// its active period as long as its parent is in its active or hold periods. /// HoldBeginAndEnd #endif ////// Indicates that a Timeline will stop if it's outside its active /// period while its parent is inside its active period. /// Stop, } } namespace MS.Internal { internal static partial class TimeEnumHelper { private const int c_maxFillBehavior = (int)FillBehavior.Stop; static internal bool IsValidFillBehavior(FillBehavior value) { return (0 <= value && (int)value <= c_maxFillBehavior); } } } // 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
- HybridDictionary.cs
- PermissionRequestEvidence.cs
- TypeUtils.cs
- LocalizableResourceBuilder.cs
- QuaternionAnimationBase.cs
- ScalarOps.cs
- MembershipValidatePasswordEventArgs.cs
- XamlSerializerUtil.cs
- ProtocolElement.cs
- SelectionEditor.cs
- GPPOINT.cs
- PersonalizablePropertyEntry.cs
- DataServiceHost.cs
- DrawListViewItemEventArgs.cs
- EntityClassGenerator.cs
- TextServicesPropertyRanges.cs
- SspiWrapper.cs
- BindingMemberInfo.cs
- TypeInitializationException.cs
- SpellerError.cs
- XamlUtilities.cs
- FontWeightConverter.cs
- DataSourceViewSchemaConverter.cs
- ReadingWritingEntityEventArgs.cs
- PartialCachingControl.cs
- ActivityDesignerHighlighter.cs
- ContentValidator.cs
- CompareValidator.cs
- DbTransaction.cs
- SafeEventLogWriteHandle.cs
- XmlParserContext.cs
- LinqDataSourceValidationException.cs
- DebugView.cs
- SessionSwitchEventArgs.cs
- LogManagementAsyncResult.cs
- WsatProxy.cs
- SplayTreeNode.cs
- CollectionBuilder.cs
- AesManaged.cs
- StateRuntime.cs
- Sequence.cs
- SoapWriter.cs
- Attributes.cs
- Metafile.cs
- WSFederationHttpSecurityElement.cs
- ValidationSummary.cs
- WindowsPrincipal.cs
- ServiceInfo.cs
- PackWebRequest.cs
- ServiceOperationParameter.cs
- EasingQuaternionKeyFrame.cs
- XamlDesignerSerializationManager.cs
- lengthconverter.cs
- XmlAttributeAttribute.cs
- WhiteSpaceTrimStringConverter.cs
- ObjectDataSourceChooseMethodsPanel.cs
- SafeRightsManagementHandle.cs
- SoapEnumAttribute.cs
- PriorityBindingExpression.cs
- SourceFileBuildProvider.cs
- CloudCollection.cs
- MenuItem.cs
- Timer.cs
- _AuthenticationState.cs
- DSACryptoServiceProvider.cs
- CellRelation.cs
- ClonableStack.cs
- Console.cs
- AuthenticodeSignatureInformation.cs
- XmlAutoDetectWriter.cs
- Calendar.cs
- StackSpiller.Bindings.cs
- WindowProviderWrapper.cs
- SqlTriggerContext.cs
- IsolatedStorageFilePermission.cs
- DispatcherOperation.cs
- View.cs
- TracingConnectionInitiator.cs
- PageThemeParser.cs
- LayoutTableCell.cs
- OracleException.cs
- ProcessThreadCollection.cs
- Identifier.cs
- EncoderParameters.cs
- ArithmeticLiteral.cs
- TriggerBase.cs
- AccessibleObject.cs
- GenerateTemporaryTargetAssembly.cs
- TraceContextEventArgs.cs
- ConnectionStringSettingsCollection.cs
- x509utils.cs
- EastAsianLunisolarCalendar.cs
- Menu.cs
- AssemblySettingAttributes.cs
- IProvider.cs
- CacheEntry.cs
- ResourceDictionaryCollection.cs
- ResXFileRef.cs
- ConfigXmlComment.cs
- AuthenticationServiceManager.cs