Hi
Sorry, not sure what you mean by you don't see Self.Name
Self.Name is an expression that can be used within ANY of the Properties of a Control.
It references itself, not other controls
ToolTip
Self.Name
Would make your tooltip the name of the control.
But you said you want it as a Variable, that part doesn't make sense.
You want to set it where?
Just to be clear though, Set is a behavioral function, so you can only put it into things like
OnSelect
Reset
So it would NOT set your variable except in those.
But if you want it in the tooltip, then you just need to do what I said up there.
Self.Fill.Color is another example of using Self
Again, it can only be used to reference properties of the control, whos property HAS this expression/Function in it.