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
- PathFigureCollection.cs
- SchemaUtility.cs
- EventProperty.cs
- PersonalizationState.cs
- WsdlParser.cs
- OrderablePartitioner.cs
- Helper.cs
- IndexExpression.cs
- FontFamilyValueSerializer.cs
- UnhandledExceptionEventArgs.cs
- PocoPropertyAccessorStrategy.cs
- RadioButtonDesigner.cs
- Properties.cs
- TextDecoration.cs
- CacheChildrenQuery.cs
- DesignerOptionService.cs
- XmlLanguageConverter.cs
- ContractSearchPattern.cs
- ConfigurationManagerInternalFactory.cs
- Int32.cs
- ConfigurationStrings.cs
- XamlPathDataSerializer.cs
- WindowsTitleBar.cs
- XmlTypeMapping.cs
- SqlStream.cs
- WebBrowser.cs
- DocumentOrderQuery.cs
- DataSet.cs
- InputScope.cs
- CompiledQueryCacheEntry.cs
- CommandID.cs
- TreeNodeBindingCollection.cs
- ScriptingProfileServiceSection.cs
- PropertySegmentSerializationProvider.cs
- FileLogRecordEnumerator.cs
- VScrollProperties.cs
- XmlChildEnumerator.cs
- WebPartCancelEventArgs.cs
- XmlUrlResolver.cs
- ControlTemplate.cs
- CompilationLock.cs
- CompositeActivityDesigner.cs
- ControlAdapter.cs
- IdnElement.cs
- IisTraceWebEventProvider.cs
- ScalarConstant.cs
- BooleanExpr.cs
- DataTable.cs
- HostedNamedPipeTransportManager.cs
- WebPartConnectionsCancelEventArgs.cs
- DataViewManagerListItemTypeDescriptor.cs
- KeyTime.cs
- CompilerGlobalScopeAttribute.cs
- DataBoundControlHelper.cs
- MgmtConfigurationRecord.cs
- ValidationEventArgs.cs
- KeyboardEventArgs.cs
- DataRecordInfo.cs
- NotFiniteNumberException.cs
- CompilationSection.cs
- _TimerThread.cs
- StreamWriter.cs
- Compiler.cs
- CompiledQuery.cs
- AsyncDataRequest.cs
- OverflowException.cs
- DecimalAnimationBase.cs
- QilBinary.cs
- MetaModel.cs
- ToolStripInSituService.cs
- EdmComplexTypeAttribute.cs
- PropertyDescriptorCollection.cs
- CodeAccessPermission.cs
- PagerStyle.cs
- MULTI_QI.cs
- WindowsGraphics.cs
- __Filters.cs
- DragEvent.cs
- Matrix3DValueSerializer.cs
- TextTreeText.cs
- SoapAttributeAttribute.cs
- AnnotationMap.cs
- RoutedEventArgs.cs
- Trigger.cs
- SQLMembershipProvider.cs
- GlyphInfoList.cs
- TextEditorMouse.cs
- KeyValuePair.cs
- CharAnimationUsingKeyFrames.cs
- GroupItemAutomationPeer.cs
- StronglyTypedResourceBuilder.cs
- SectionRecord.cs
- DesignerView.xaml.cs
- NominalTypeEliminator.cs
- Normalization.cs
- FixedSOMElement.cs
- MetabaseServerConfig.cs
- TemplateContentLoader.cs
- JsonXmlDataContract.cs
- Metafile.cs