Is it possible to replace "button1.backcolor" or just "button1" in this code with a variable(which will contain a buttons name):

private sub()
button1.backcolor = color.blue
end sub


So instead the code would be :

private sub()
variablename = color.blue
end sub

Thanks!