JavaFXSettingsAddJavaFxClass Method |
Adds a class to the list of JavaFX classes included in the object hierarchy and specifies whether the class's derived classes should be included in the object hierarchy as well.
Namespace:
SmartBear.TestLeft.Options
Assembly:
SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.70.237.11 (14.70.237.11)
Syntax public void AddJavaFxClass(
string className,
bool includeDerived
)
Public Sub AddJavaFxClass (
className As String,
includeDerived As Boolean
)
Dim instance As JavaFXSettings
Dim className As String
Dim includeDerived As Boolean
instance.AddJavaFxClass(className, includeDerived)
public:
void AddJavaFxClass(
String^ className,
bool includeDerived
)
Parameters
- className
- Type: SystemString
A full class name of the JavaFX object to be included in the object hierarchy. - includeDerived
- Type: SystemBoolean
If true, objects of derives classes will be included in the object hierarchy.
See Also