Class Win32FlavorElement
public class Win32FlavorElement : FlavorElement
- Inheritance
-
Win32FlavorElement
- Derived
- Inherited Members
Constructors
Win32FlavorElement(IntPtr)
public Win32FlavorElement(IntPtr handle)
Parameters
handleIntPtr
Win32FlavorElement(IntPtr, string)
protected Win32FlavorElement(IntPtr handle, string flavorName)
Parameters
Properties
AutomationId
public string AutomationId { get; }
Property Value
BackgroundColor
public string BackgroundColor { get; set; }
Property Value
ClassName
public string ClassName { get; }
Property Value
ControlName
public string ControlName { get; }
Property Value
DontCache
Indicates that the element should not be cached. Defaults to false.
protected override bool DontCache { get; }
Property Value
ElementClientRectangle
public Rectangle ElementClientRectangle { get; }
Property Value
ElementRectangle
The client or screen rectangle of the flavor element depending on the value returned by IsClientRectangle.
public override Rectangle ElementRectangle { get; }
Property Value
Remarks
To be implemented by the deriving class.
Enabled
True if the element is enabled. If the element cannot be enabled or disabled, return true.
public override bool Enabled { get; }
Property Value
Remarks
To be implemented by the deriving class.
Handle
public virtual IntPtr Handle { get; protected set; }
Property Value
HasFocus
True if the element has the focus.
public override bool HasFocus { get; }
Property Value
Remarks
To be implemented by the deriving class.
IsClientRectangle
Determines if the ElementRectangle property returns client or screen coordinates.
public override bool IsClientRectangle { get; }
Property Value
Remarks
To be implemented by the deriving class.
ProcessId
public int ProcessId { get; }
Property Value
ProcessName
public string ProcessName { get; }
Property Value
Text
public string Text { get; set; }
Property Value
TextColor
public string TextColor { get; set; }
Property Value
Valid
True if the flavor element is still valid.
public override bool Valid { get; }
Property Value
Remarks
To be implemented by the deriving class.
Visible
True if the element is visible.
public override bool Visible { get; }
Property Value
Remarks
To be implemented by the deriving class.
Methods
CreateCapabilityList()
protected string[] CreateCapabilityList()
Returns
- string[]
EnsureVisible()
Ensures that the flavor element is visible.
public override bool EnsureVisible()
Returns
- bool
True if the operation was successful.
Focus()
Focuses the flavor element, if possible.
public override void Focus()
GetAttributeValue(Element, string)
Needs to be implemented for attribute value read access.
public override object GetAttributeValue(Element element, string name)
Parameters
Returns
- object
The attribute value.
GetAutomationElement()
public AutomationElement GetAutomationElement()
Returns
- AutomationElement
GetChildLineageFromPoint(Point, out FindRefineMode)
Returns a list of flavor elements that is the lineage to the flavor element at the specified screen location.
public override LinkedList<FlavorElement> GetChildLineageFromPoint(Point screenLocation, out FindRefineMode refineMode)
Parameters
screenLocationPointThe screen location to search at.
refineModeFindRefineModeCan be set to indicate that further searching is required.
Returns
- LinkedList<FlavorElement>
The lineage to the flavor element at the specified point as a list.
Remarks
The first element in the returned list is the direct child of this flavor element, the k-th element is the parent of the (k+1)-th element, and the last element is the actual flavor element at the specified screen location. Consequently, an empty list is to be returned if this element is the best fitting element at the requested point.
Returns null if the specified screenLocation is not within this
or one of its descendant elements.
GetDynamicDescriptors(out IList<AttributeDescriptor>, out IList<ActionDescriptor>)
Gets the descriptors for the dynamic attributes and actions that the element supports.
public override void GetDynamicDescriptors(out IList<AttributeDescriptor> attributes, out IList<ActionDescriptor> actions)
Parameters
attributesIList<AttributeDescriptor>The dynamic attributes that the element supports.
actionsIList<ActionDescriptor>The dynamic actions that the element supports.
Remarks
The default implementation returns empty lists for attributes and
actions. Any overriding method should fill the returned lists.
GetElementCapabilities(Element, out Role, out string[], out string)
Supplies the role, a list of capabilities and a preferred capability names to the caller. This method called when building a new element from the flavor element.
public override void GetElementCapabilities(Element parent, out Role role, out string[] capabilities, out string preferredCap)
Parameters
parentElementThe parent element of the element to be constructed. (for reference only)
roleRoleThe role the element should have.
capabilitiesstring[]The list of capabilities the element should have.
preferredCapstringThe preferred capability the element should have.
GetElementClientRectangle(IntPtr)
public static Rectangle GetElementClientRectangle(IntPtr hwnd)
Parameters
hwndIntPtr
Returns
GetElementRectangle(IntPtr)
public static Rectangle GetElementRectangle(IntPtr hwnd)
Parameters
hwndIntPtr
Returns
GetPropertyValue(int)
public object GetPropertyValue(int propertyId)
Parameters
propertyIdint
Returns
GetPropertyValue(AutomationProperty)
public object GetPropertyValue(AutomationProperty property)
Parameters
propertyAutomationProperty
Returns
GetRuntimeTokenValues()
Gets the runtime token values. This must be implemented by the flavors.
protected override object[] GetRuntimeTokenValues()
Returns
- object[]
A collection of objects representing a runtime token.
InvokeAction(Element, string, object[])
Needs to be implemented for element action invocation.
public override object InvokeAction(Element element, string name, object[] args)
Parameters
elementElementThe element instance used.
namestringThe name of the action (lowercased).
argsobject[]A list of invocation parameters.
Returns
NativeWindowGetAttributeValue(Element, string, out object)
public bool NativeWindowGetAttributeValue(Element element, string name, out object value)
Parameters
Returns
NativeWindowInvokeAction(Element, string, object[], out object)
public bool NativeWindowInvokeAction(Element element, string name, object[] args, out object value)
Parameters
Returns
NativeWindowSetAttributeValue(Element, string, object)
public bool NativeWindowSetAttributeValue(Element element, string name, object value)
Parameters
Returns
SetAttributeValue(Element, string, object)
Needs to be implemented for attribute value write access.
public override void SetAttributeValue(Element element, string name, object value)