For public properties you could do like this:
'Get or set the Left value of the view
Public setLeft (value as int)
mLeft =value
End sub
Public In getLeft as int
Return mLeft
End sub
In this example, mLeft is a global variable, and the user , due to the lowercase set/get prefix, will get a unified Left property.