如何动态访问Xojo上的子类的属性?

时间:2016-03-20 19:54:23

标签: class object web-applications properties xojo

在Xojo WebApp上,我创建了一个TextFieldClass,其属性为“必需为布尔值”。

在网页上,我有一些TextFieldClass个对象。

我想做的很简单......我想在网页上进行self.ControlCount,并检查具有“true”值的所有textFieldClass实际上是否包含内容。

简单,对吧?......

Dim i as integer
Dim c As textFieldClass
For i=0 To self.ControlCount
    if self.ControlAtIndex(i) isa textFieldClass then
        **c=self.ControlAtIndex(i) // i got an error… expected class textFieldClass, but got class webObject…**
    End If
Next

如果我尝试:

Dim i as integer
Dim c As WebObject
For i=0 To self.ControlCount
    if self.ControlAtIndex(i) isa textFieldClass then
        c=self.ControlAtIndex(i)
        **if c.required then // I got an error… Type "WebObject" has no member named "required"**
            // do something here…
        end if
    End If
Next

感谢您的帮助!

2 个答案:

答案 0 :(得分:2)

试试这个:

c = TextFieldClass(self.ControlAtIndex(i))

答案 1 :(得分:1)

你真的很亲密。由于controlAtIndex带回一个RectControl,你必须将RectControl转换为textFieldClass子类。技术上与上述相同,但有更多解释。

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<div class="img-cntnr">
  <img class="my-img" src="http://www.fillmurray.com/g/900/900" alt="" />
</div>
</body>
</html>