If we use script, we have a variable name event.source which refers to the component who has the event itself.
Is there any similar way to refer to the component itself using expression binding?
For example, if the name of the component instances are MyComponent0, MyComponent1, MyComponent2, etc… and each has custom property of MyProp, instead of doing this:
{MyComponent0.MyProp} * 50
{MyComponent1.MyProp} * 50
{MyComponent2.MyProp} * 50
Is there any “relative” way for a component to refer to its own property? Something like:
{this.MyProp} * 50