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
- XmlObjectSerializerReadContextComplexJson.cs
- EUCJPEncoding.cs
- StylusPointProperty.cs
- HttpListenerPrefixCollection.cs
- TreeNode.cs
- GridErrorDlg.cs
- HwndSource.cs
- WebPartEditorCancelVerb.cs
- Timer.cs
- NativeMethods.cs
- XmlNodeChangedEventManager.cs
- FlagsAttribute.cs
- StandardBindingElementCollection.cs
- WinCategoryAttribute.cs
- SchemaCollectionPreprocessor.cs
- SiteMapDataSourceView.cs
- SecUtil.cs
- MbpInfo.cs
- WmlImageAdapter.cs
- OdbcEnvironmentHandle.cs
- StringArrayConverter.cs
- AdapterDictionary.cs
- DependencyObjectPropertyDescriptor.cs
- PropertyMapper.cs
- ADConnectionHelper.cs
- MediaEntryAttribute.cs
- RegexParser.cs
- TextAnchor.cs
- QueryStoreStatusRequest.cs
- EmbeddedMailObjectsCollection.cs
- DocumentApplicationJournalEntry.cs
- SchemaImporterExtension.cs
- _StreamFramer.cs
- BamlCollectionHolder.cs
- GeometryValueSerializer.cs
- ParserOptions.cs
- OletxTransactionFormatter.cs
- LinkButton.cs
- XmlDownloadManager.cs
- ListBoxAutomationPeer.cs
- ToolTipAutomationPeer.cs
- SafePEFileHandle.cs
- ListViewItemEventArgs.cs
- PenThreadWorker.cs
- PrimitiveXmlSerializers.cs
- TextSpan.cs
- DrawingVisual.cs
- TdsRecordBufferSetter.cs
- XmlSubtreeReader.cs
- SolidBrush.cs
- EntityDataSourceDesigner.cs
- baseshape.cs
- SizeValueSerializer.cs
- ClusterSafeNativeMethods.cs
- ItemCheckedEvent.cs
- SymbolMethod.cs
- ContainerSelectorActiveEvent.cs
- ResourceAssociationSetEnd.cs
- DefaultObjectMappingItemCollection.cs
- PlaceHolder.cs
- AuthenticatedStream.cs
- TextStore.cs
- ObjectTag.cs
- Point4D.cs
- ComponentDispatcherThread.cs
- SapiRecoInterop.cs
- ScrollItemProviderWrapper.cs
- TransformerConfigurationWizardBase.cs
- EventDescriptorCollection.cs
- Ref.cs
- Panel.cs
- Vector3DCollectionConverter.cs
- LeafCellTreeNode.cs
- panel.cs
- Claim.cs
- DetailsViewRow.cs
- Codec.cs
- BindableTemplateBuilder.cs
- EntityDataSourceStatementEditorForm.cs
- Section.cs
- WrappedIUnknown.cs
- CompiledQueryCacheKey.cs
- ConnectionStringsSection.cs
- XPathException.cs
- ClientTargetCollection.cs
- CustomErrorsSectionWrapper.cs
- Scheduler.cs
- BamlTreeNode.cs
- DeclaredTypeElement.cs
- WorkflowQueuingService.cs
- WebPartDisplayModeCancelEventArgs.cs
- DataGridItem.cs
- GridProviderWrapper.cs
- ListSourceHelper.cs
- DigitShape.cs
- WS2007HttpBindingCollectionElement.cs
- MetadataProperty.cs
- ValidationEventArgs.cs
- Section.cs
- SqlTypeConverter.cs