Class SapWindowFlavorElement
public class SapWindowFlavorElement : SapFlavorElement
- Inheritance
-
SapWindowFlavorElement
- Inherited Members
Properties
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.
SapApp
public GuiApplication SapApp { get; }
Property Value
- GuiApplication
SapWnd
public GuiFrameWindow SapWnd { get; }
Property Value
- GuiFrameWindow
Valid
True if the flavor element is still valid.
public override bool Valid { get; }
Property Value
Remarks
To be implemented by the deriving class.
Win32FlavorElement
public Win32FlavorElement Win32FlavorElement { get; }
Property Value
Methods
CanReplace(FlavorElement)
Returns a value specifying if this flavor element can replace elem.
public override bool CanReplace(FlavorElement elem)
Parameters
elemFlavorElementThe element to replace.
Returns
- bool
Trueif this flavor element can replaceelem, otherwisefalse.
Remarks
The base method returns true if this flavor element IsEqual(FlavorElement)
to elem.
EnsureVisible()
Ensures that the flavor element is visible.
public override bool EnsureVisible()
Returns
- bool
True if the operation was successful.
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.
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.
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.
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
IsEqual(FlavorElement)
Compares to flavor elements. This should be implemented using the best comparison method available.
public override bool IsEqual(FlavorElement flavorElem)
Parameters
flavorElemFlavorElementThe flavor element to compare to.
Returns
- bool
True if the flavor elements are equal.
Remarks
The base method compares the token values returned by GetRuntimeTokenValues().
SetAttributeValue(Element, string, object)
Needs to be implemented for attribute value write access.
public override void SetAttributeValue(Element element, string name, object value)