RadioGroupDescription Class

The description of an Oracle RadioGroup test object.

C# Syntax

public abstract class RadioGroupDescription : HP.LFT.SDK.Description, HP.LFT.SDK.IDescription, HP.LFT.SDK.PropertiesDescription, HP.LFT.SDK.Oracle.UiObjectBaseDescription

Inheritance Hierarchy

System.Object
   HP.LFT.SDK.PropertiesDescription
      HP.LFT.SDK.Description
        HP.LFT.SDK.Oracle.UiObjectBaseDescription
            HP.LFT.SDK.Oracle.RadioGroupDescription

Public Constructors

 NameDescription
Public ConstructorRadioGroupDescription Constructor

 Initializes a new instance of the RadioGroupDescription class.

C# Syntax

public RadioGroupDescription()

Public Properties

 NameDescription
Public PropertyAbsoluteLocation

The object's absolute coordinates relative to the screen (in pixels). 0,0 is the top-left corner of the (primary) monitor.  (Inherited from HP.LFT.SDK.Oracle.UiObjectBaseDescription)

Public PropertyCaption

The caption of the object.

C# Syntax

public StringProperty Caption {get; set;}
Public PropertyClassPath

The Oracle class hierarchy of the object's Oracle class.

C# Syntax

public StringProperty ClassPath {get; set;}
Public PropertyIndexThe 0-based index of this object, relative to all other objects with an otherwise identical description. (Inherited from HP.LFT.SDK.Description)
Public PropertyIsEnabled

Indicates whether the object is enabled.

C# Syntax

public bool IsEnabled {get; set;}
Public PropertyLocation

The object's coordinates relative to the parent window (in pixels). (Inherited from HP.LFT.SDK.Oracle.UiObjectBaseDescription)

Public PropertyObjectDescription

The accessibility description of the object as specified by the server.

C# Syntax

public StringProperty ObjectDescription {get; set;}
Public PropertyObjectName

The internal name of the object supplied by the application server.

C# Syntax

public StringProperty ObjectName {get; set;}
Public PropertyObjectType

The general object type. (Inherited from HP.LFT.SDK.Oracle.UiObjectBaseDescription)

Public PropertySelectedIndex

The 0-based index of the item selected in the radio group.

Note: If no item is selected, -1 is returned.

C# Syntax

public StringProperty SelectedIndex {get; set;}
Public PropertySelectedItem

The value of the item selected in the radio group.

C# Syntax

public StringProperty SelectedItem {get; set;}
Public PropertySize

The object's size in pixels.   (Inherited from HP.LFT.SDK.Oracle.UiObjectBaseDescription)

Public PropertyTooltipText

The text displayed in the object's tooltip.

C# Syntax

public StringProperty TooltipText {get; set;}
Public PropertyVriDistinguishes this object from other objects with otherwise identical descriptions, based on this object's visual relationship to another object in the application. (Inherited from HP.LFT.SDK.Description)
Top