Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Input / Stylus / RawStylusActions.cs / 1 / RawStylusActions.cs
using System; namespace System.Windows.Input { ////// The raw actions being reported from the stylus. /// ////// Note that multiple actions can be reported at once. /// [Flags] internal enum RawStylusActions { ////// NoAction /// None = 0x000, ////// The stylus became active in the application. The application /// may need to refresh its stylus state. /// Activate = 0x001, ////// The stylus became inactive in the application. The application /// may need to clear its stylus state. /// Deactivate = 0x002, ////// The stylus just came in contact with the digitizer /// Down = 0x004, ////// The stylus just lost contact with the digitizer /// Up = 0x008, ////// The stylus is sending more data while in contact with the digitizer. /// Move = 0x010, ////// The stylus is sending more data while hovering in-air over the digitizer. /// InAirMove = 0x020, ////// The stylus is now in range of the digitizer. /// InRange = 0x040, ////// The stylus is now out of range of the digitizer. /// OutOfRange = 0x080, ////// The stylus is now out of range of the digitizer. /// SystemGesture = 0x100, } ////// Internal helper for validating RawStylusActions /// internal static class RawStylusActionsHelper { private static readonly RawStylusActions MaxActions = RawStylusActions.None | RawStylusActions.Activate | RawStylusActions.Deactivate | RawStylusActions.Down | RawStylusActions.Up | RawStylusActions.Move | RawStylusActions.InAirMove | RawStylusActions.InRange | RawStylusActions.OutOfRange | RawStylusActions.SystemGesture; internal static bool IsValid(RawStylusActions action) { if (action < RawStylusActions.None || action > MaxActions) { return false; } return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; namespace System.Windows.Input { ////// The raw actions being reported from the stylus. /// ////// Note that multiple actions can be reported at once. /// [Flags] internal enum RawStylusActions { ////// NoAction /// None = 0x000, ////// The stylus became active in the application. The application /// may need to refresh its stylus state. /// Activate = 0x001, ////// The stylus became inactive in the application. The application /// may need to clear its stylus state. /// Deactivate = 0x002, ////// The stylus just came in contact with the digitizer /// Down = 0x004, ////// The stylus just lost contact with the digitizer /// Up = 0x008, ////// The stylus is sending more data while in contact with the digitizer. /// Move = 0x010, ////// The stylus is sending more data while hovering in-air over the digitizer. /// InAirMove = 0x020, ////// The stylus is now in range of the digitizer. /// InRange = 0x040, ////// The stylus is now out of range of the digitizer. /// OutOfRange = 0x080, ////// The stylus is now out of range of the digitizer. /// SystemGesture = 0x100, } ////// Internal helper for validating RawStylusActions /// internal static class RawStylusActionsHelper { private static readonly RawStylusActions MaxActions = RawStylusActions.None | RawStylusActions.Activate | RawStylusActions.Deactivate | RawStylusActions.Down | RawStylusActions.Up | RawStylusActions.Move | RawStylusActions.InAirMove | RawStylusActions.InRange | RawStylusActions.OutOfRange | RawStylusActions.SystemGesture; internal static bool IsValid(RawStylusActions action) { if (action < RawStylusActions.None || action > MaxActions) { return false; } return true; } } } // 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
- WebPartConnectionsCancelVerb.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- JobDuplex.cs
- HotSpot.cs
- AuthorizationRule.cs
- safelinkcollection.cs
- AggregatePushdown.cs
- ApplicationSettingsBase.cs
- TimeSpanOrInfiniteConverter.cs
- EndPoint.cs
- WebResourceUtil.cs
- DurableEnlistmentState.cs
- FontCacheLogic.cs
- ComponentResourceKey.cs
- MemoryStream.cs
- CharacterHit.cs
- MobileTemplatedControlDesigner.cs
- NamespaceQuery.cs
- DataAdapter.cs
- AttachmentCollection.cs
- SapiAttributeParser.cs
- _NativeSSPI.cs
- PointIndependentAnimationStorage.cs
- hwndwrapper.cs
- FunctionQuery.cs
- Semaphore.cs
- ErasingStroke.cs
- Random.cs
- ExpressionHelper.cs
- MergeFilterQuery.cs
- PackageProperties.cs
- CompositeClientFormatter.cs
- String.cs
- ClientTargetSection.cs
- DocumentOrderComparer.cs
- TableItemStyle.cs
- StopStoryboard.cs
- TextRangeEditTables.cs
- WorkflowRuntimeElement.cs
- QueryCacheManager.cs
- ConfigXmlSignificantWhitespace.cs
- HtmlImage.cs
- ImageField.cs
- ArgumentsParser.cs
- SmtpNetworkElement.cs
- PropertyToken.cs
- _SafeNetHandles.cs
- TakeOrSkipWhileQueryOperator.cs
- KeyValueInternalCollection.cs
- ItemAutomationPeer.cs
- GlobalId.cs
- ImportOptions.cs
- SecurityContextKeyIdentifierClause.cs
- CancelEventArgs.cs
- IndexedEnumerable.cs
- FlowDocumentReader.cs
- CanonicalFontFamilyReference.cs
- RIPEMD160Managed.cs
- Brush.cs
- Axis.cs
- DateTimeOffsetAdapter.cs
- Part.cs
- PersonalizationStateInfo.cs
- TypeDelegator.cs
- CodeDOMProvider.cs
- XPathSelfQuery.cs
- Pair.cs
- SpotLight.cs
- TreeViewHitTestInfo.cs
- RemoteWebConfigurationHostServer.cs
- XsltException.cs
- HealthMonitoringSectionHelper.cs
- AttributeQuery.cs
- DelegateHelpers.cs
- DateTime.cs
- NameSpaceExtractor.cs
- SizeIndependentAnimationStorage.cs
- StackOverflowException.cs
- FusionWrap.cs
- NetworkInformationException.cs
- EqualityComparer.cs
- SystemWebExtensionsSectionGroup.cs
- ConvertTextFrag.cs
- XmlJsonWriter.cs
- ToolStripOverflow.cs
- OutputBuffer.cs
- Int32Collection.cs
- MemberCollection.cs
- SortedDictionary.cs
- KeyedHashAlgorithm.cs
- SingleAnimationUsingKeyFrames.cs
- TraceSwitch.cs
- TextRunTypographyProperties.cs
- HelpProvider.cs
- ExpressionBindingCollection.cs
- ExpressionTable.cs
- LogExtent.cs
- input.cs
- Dump.cs
- TypedReference.cs