interface Binding.BindProperty
Creates a new binding to observe the specified property.
interface BindProperty<T>;
Notes
- This method creates a binding that observes both the original value, and (if the value is an object) a property or nested property. If the value is undefined or not an object, the bound value becomes undefined.
Parameters
- sourcePath — The source property path, as a string
Return value
A new binding, typed as the new value or undefined
Related
class Binding
A class that represents a property binding.
