property bindType

(r/o) int32 bindType;

Typ

Zugriff

This property returns the type of binding. The valid values are:
function onSample()
{
    var box = scene.getBoxById("myBox");
    if (box)
    {
        var binding = box.getDataBinding("myBinding");
        if (binding)
        {
            shell.print("Bind type = " + binding.bindType);
        }
    }
}