WebElementPatternreadOnly Property |
Specifies whether the sought-for web object has the readonly attribute.
Namespace:
SmartBear.TestLeft.TestObjects.Web
Assembly:
SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.70.237.11 (14.70.237.11)
Syntax public Nullable<bool> readOnly { get; set; }
Public Property readOnly As Nullable(Of Boolean)
Get
Set
Dim instance As WebElementPattern
Dim value As Nullable(Of Boolean)
value = instance.readOnly
instance.readOnly = value
public:
property Nullable<bool> readOnly {
Nullable<bool> get ();
void set (Nullable<bool> value);
}
Property Value
Type:
NullableBooleanRemarks
Pay attention to the spelling (the uppercase O in the middle). This was done to avoid conflicts with the C# reserved word 'readonly'.
See Also