Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Animation / FillBehavior.cs / 1305600 / 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
- SiteMapDataSourceView.cs
- MessageHeaderT.cs
- XmlNodeReader.cs
- ObjectTypeMapping.cs
- _ConnectionGroup.cs
- MsmqChannelListenerBase.cs
- ConcurrencyBehavior.cs
- ActivityExecutionContext.cs
- PrintDialog.cs
- ChannelBinding.cs
- HtmlElementErrorEventArgs.cs
- Container.cs
- ResourceContainer.cs
- DescendantOverDescendantQuery.cs
- XmlStreamStore.cs
- ListCardsInFileRequest.cs
- PriorityQueue.cs
- ResetableIterator.cs
- StringWriter.cs
- AssemblyAttributes.cs
- Model3DCollection.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- Message.cs
- EventLogPermissionAttribute.cs
- CompilationLock.cs
- DefaultBinder.cs
- FrameAutomationPeer.cs
- DetailsViewRow.cs
- _TransmitFileOverlappedAsyncResult.cs
- SettingsPropertyIsReadOnlyException.cs
- HtmlTernaryTree.cs
- Menu.cs
- DesignerRegion.cs
- SelectionChangedEventArgs.cs
- CheckPair.cs
- QuotedPrintableStream.cs
- AnonymousIdentificationSection.cs
- TypeUnloadedException.cs
- ApplicationTrust.cs
- SplitContainerDesigner.cs
- ConsumerConnectionPointCollection.cs
- HttpCookie.cs
- ContentOnlyMessage.cs
- Hyperlink.cs
- SqlParameter.cs
- FixedSOMGroup.cs
- AutomationElement.cs
- SoapConverter.cs
- MaskedTextBox.cs
- HandlerMappingMemo.cs
- NetworkInterface.cs
- ComponentResourceManager.cs
- DrawingDrawingContext.cs
- HandleTable.cs
- ImageList.cs
- WebPartCatalogAddVerb.cs
- TableItemPatternIdentifiers.cs
- ComboBoxItem.cs
- LinearKeyFrames.cs
- PathFigure.cs
- InheritanceContextHelper.cs
- BufferedGenericXmlSecurityToken.cs
- FileInfo.cs
- ProviderMetadataCachedInformation.cs
- DWriteFactory.cs
- WebPartVerbCollection.cs
- TextEffectCollection.cs
- SchemaComplexType.cs
- DataSourceBooleanViewSchemaConverter.cs
- XmlStringTable.cs
- OutputCacheProfileCollection.cs
- Config.cs
- UseAttributeSetsAction.cs
- DataGridCell.cs
- UIServiceHelper.cs
- DataControlImageButton.cs
- HyperLinkStyle.cs
- TransactionChannelFaultConverter.cs
- ClaimTypeRequirement.cs
- InstanceCreationEditor.cs
- ToggleButtonAutomationPeer.cs
- LocatorPart.cs
- Double.cs
- NumericUpDownAccelerationCollection.cs
- ListViewGroupConverter.cs
- TargetException.cs
- XmlSchemaFacet.cs
- NetworkAddressChange.cs
- AccessControlEntry.cs
- SystemWebCachingSectionGroup.cs
- IDReferencePropertyAttribute.cs
- Color.cs
- DateTimeParse.cs
- ObjectDataSourceMethodEventArgs.cs
- NextPreviousPagerField.cs
- EventLogPermissionEntry.cs
- XmlWriter.cs
- SafeFileMappingHandle.cs
- RestHandlerFactory.cs
- DbCommandTree.cs