THIS
A reference to a shape itself. It is primarily used to get things on the shape or to reference it. When it is used without referencing items on the shape, it will return the text of the shape.
Syntax
=THIS
Examples
Given that a shape has the following data:
Label | Value |
---|---|
Property 1 | Process |
=THIS."Property 1
→ Process
PRO TIP: The alias
@
can be used in place ofTHIS
. For example:=@"Property 1"
Updated 7 months ago