Table of Contents

Class SapCTextFieldFlavorElement

Namespace
Ranorex.Plugin
Assembly
Ranorex.Plugin.Sap.dll
public class SapCTextFieldFlavorElement : SapFlavorElement
Inheritance
SapCTextFieldFlavorElement
Inherited Members

Constructors

SapCTextFieldFlavorElement(GuiVComponent, SapFlavorElement)

public SapCTextFieldFlavorElement(GuiVComponent sapComp, SapFlavorElement containerFlavorElement)

Parameters

sapComp GuiVComponent
containerFlavorElement SapFlavorElement

Methods

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

attributes IList<AttributeDescriptor>

The dynamic attributes that the element supports.

actions IList<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.

InvokeAction(Element, string, object[])

Needs to be implemented for element action invocation.

public override object InvokeAction(Element element, string name, object[] args)

Parameters

element Element

The element instance used.

name string

The name of the action (lowercased).

args object[]

A list of invocation parameters.

Returns

object

The invocation result. Can be null if the return type is void.