私はいくつかのコードを持っています:
<!-- language: lang-vb -->
Set oWebEdit = Browser("").Page("").WebEdit("")
'Get the TOProperties collection
Set TOProps = oWebEdit.GetTOProperties()
Dim i, iCount
iCount = TOProps.Count - 1
'Loop through all the properties
For i = 0 To iCount
'Get Name of the property
sName = TOProps(i).Name
'Get the value of the property
sValue = TOProps(i).Value
'Is the value a regular expression
isRegularExpression = TOProps(i).RegularExpression
'Display the values
Msgbox sName & "->" & sValue & "->" & isRegularExpression
Next
私の質問: オブジェクト リポジトリ (OR) にオブジェクトを手動で追加すると (例: Google 検索ページから: webButton 検索)、そのname
、type
、およびhtmltag
が OR のプロパティとして表示されます。
このコードでは、どのようisRegularExpression
に考慮されていますか? この式はどのように答えられますか? OR に表示されていないが、見つけることができる他のプロパティはありますか?