FlipViewItemAutomationPeer
FlipViewItemAutomationPeer
FlipViewItemAutomationPeer
FlipViewItemAutomationPeer
Class
Definition
Exposes a FlipViewItem to Microsoft UI Automation.
public : class FlipViewItemAutomationPeer : FrameworkElementAutomationPeer, IFlipViewItemAutomationPeerpublic class FlipViewItemAutomationPeer : FrameworkElementAutomationPeer, IFlipViewItemAutomationPeerPublic Class FlipViewItemAutomationPeer Inherits FrameworkElementAutomationPeer Implements IFlipViewItemAutomationPeer// This API is not available in Javascript.
- Inheritance
-
FrameworkElementAutomationPeerFrameworkElementAutomationPeerFrameworkElementAutomationPeerFrameworkElementAutomationPeerFlipViewItemAutomationPeerFlipViewItemAutomationPeerFlipViewItemAutomationPeerFlipViewItemAutomationPeer
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
ClearValue(DependencyProperty)ClearValue(DependencyProperty)ClearValue(DependencyProperty)ClearValue(DependencyProperty)
CreatePeerForElement(UIElement)CreatePeerForElement(UIElement)CreatePeerForElement(UIElement)CreatePeerForElement(UIElement)
GenerateRawElementProviderRuntimeIdGenerateRawElementProviderRuntimeIdGenerateRawElementProviderRuntimeIdGenerateRawElementProviderRuntimeId
GetAnimationBaseValue(DependencyProperty)GetAnimationBaseValue(DependencyProperty)GetAnimationBaseValue(DependencyProperty)GetAnimationBaseValue(DependencyProperty)
GetAutomationControlTypeCoreGetAutomationControlTypeCoreGetAutomationControlTypeCoreGetAutomationControlTypeCore
GetElementFromPoint(Point)GetElementFromPoint(Point)GetElementFromPoint(Point)GetElementFromPoint(Point)
GetElementFromPointCore(Point)GetElementFromPointCore(Point)GetElementFromPointCore(Point)GetElementFromPointCore(Point)
GetLocalizedControlTypeCoreGetLocalizedControlTypeCoreGetLocalizedControlTypeCoreGetLocalizedControlTypeCore
GetLocalizedLandmarkTypeCoreGetLocalizedLandmarkTypeCoreGetLocalizedLandmarkTypeCoreGetLocalizedLandmarkTypeCore
GetPattern(PatternInterface)GetPattern(PatternInterface)GetPattern(PatternInterface)GetPattern(PatternInterface)
GetPatternCore(PatternInterface)GetPatternCore(PatternInterface)GetPatternCore(PatternInterface)GetPatternCore(PatternInterface)
GetPeerFromPointCore(Point)GetPeerFromPointCore(Point)GetPeerFromPointCore(Point)GetPeerFromPointCore(Point)
GetValue(DependencyProperty)GetValue(DependencyProperty)GetValue(DependencyProperty)GetValue(DependencyProperty)
ListenerExists(AutomationEvents)ListenerExists(AutomationEvents)ListenerExists(AutomationEvents)ListenerExists(AutomationEvents)
Navigate(AutomationNavigationDirection)Navigate(AutomationNavigationDirection)Navigate(AutomationNavigationDirection)Navigate(AutomationNavigationDirection)
NavigateCore(AutomationNavigationDirection)NavigateCore(AutomationNavigationDirection)NavigateCore(AutomationNavigationDirection)NavigateCore(AutomationNavigationDirection)
PeerFromProvider(IRawElementProviderSimple)PeerFromProvider(IRawElementProviderSimple)PeerFromProvider(IRawElementProviderSimple)PeerFromProvider(IRawElementProviderSimple)
ProviderFromPeer(AutomationPeer)ProviderFromPeer(AutomationPeer)ProviderFromPeer(AutomationPeer)ProviderFromPeer(AutomationPeer)
RaiseAutomationEvent(AutomationEvents)RaiseAutomationEvent(AutomationEvents)RaiseAutomationEvent(AutomationEvents)RaiseAutomationEvent(AutomationEvents)
RaiseNotificationEvent(AutomationNotificationKind,AutomationNotificationProcessing,String,String)RaiseNotificationEvent(AutomationNotificationKind,AutomationNotificationProcessing,String,String)RaiseNotificationEvent(AutomationNotificationKind,AutomationNotificationProcessing,String,String)RaiseNotificationEvent(AutomationNotificationKind,AutomationNotificationProcessing,String,String)
RaisePropertyChangedEvent(AutomationProperty,Object,Object)RaisePropertyChangedEvent(AutomationProperty,Object,Object)RaisePropertyChangedEvent(AutomationProperty,Object,Object)RaisePropertyChangedEvent(AutomationProperty,Object,Object)
RaiseStructureChangedEvent(AutomationStructureChangeType,AutomationPeer)RaiseStructureChangedEvent(AutomationStructureChangeType,AutomationPeer)RaiseStructureChangedEvent(AutomationStructureChangeType,AutomationPeer)RaiseStructureChangedEvent(AutomationStructureChangeType,AutomationPeer)
RaiseTextEditTextChangedEvent(AutomationTextEditChangeType,IVectorView{String})RaiseTextEditTextChangedEvent(AutomationTextEditChangeType,IVectorView{String})RaiseTextEditTextChangedEvent(AutomationTextEditChangeType,IVectorView{String})RaiseTextEditTextChangedEvent(AutomationTextEditChangeType,IVectorView{String})
ReadLocalValue(DependencyProperty)ReadLocalValue(DependencyProperty)ReadLocalValue(DependencyProperty)ReadLocalValue(DependencyProperty)
RegisterPropertyChangedCallback(DependencyProperty,DependencyPropertyChangedCallback)RegisterPropertyChangedCallback(DependencyProperty,DependencyPropertyChangedCallback)RegisterPropertyChangedCallback(DependencyProperty,DependencyPropertyChangedCallback)RegisterPropertyChangedCallback(DependencyProperty,DependencyPropertyChangedCallback)
SetParent(AutomationPeer)SetParent(AutomationPeer)SetParent(AutomationPeer)SetParent(AutomationPeer)
Inherited properties
Remarks
The Windows Runtime FlipViewItem class creates a new FlipViewItemAutomationPeer as its OnCreateAutomationPeer definition. Derive your automation peer from FlipViewItemAutomationPeer if you are deriving a custom class from FlipViewItem and want to add automation support for additional features that you enabled in your custom class. Then override OnCreateAutomationPeer so that it returns your custom peer.
Default peer implementation and overrides in FlipViewItemAutomationPeer
FlipViewItemAutomationPeer has overrides of Core methods such that the associated AutomationPeer methods provide peer-specific information to a Microsoft UI Automation client.
- GetPattern reports that the peer doesn't have any patterns. However, the content of the FlipViewItem might have a specific peer, for example if it is a TextBox. The parent FlipView has the support for any selection-related automation behavior.
- GetClassName returns "FlipViewItem".
- GetAutomationControlType returns AutomationControlType.ListItem. The peer also has other behaviors that are provided by the base FrameworkElementAutomationPeer class. For more info, see "Base implementation in FrameworkElementAutomationPeer" section of Custom automation peers.
Constructors
FlipViewItemAutomationPeer(FlipViewItem) FlipViewItemAutomationPeer(FlipViewItem) FlipViewItemAutomationPeer(FlipViewItem) FlipViewItemAutomationPeer(FlipViewItem)
Initializes a new instance of the FlipViewItemAutomationPeer class.
public : FlipViewItemAutomationPeer(FlipViewItem owner)public FlipViewItemAutomationPeer(FlipViewItem owner)Public Sub New(owner As FlipViewItem)// This API is not available in Javascript.
Parameters
The FlipViewItem to create the peer for.