Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim InternalVariable As String 'Internal variable that holds the property's value.
Property Let Tag(AssignedValue As String) 'Allows assignment
InternalVariable = AssignedValue 'Internal variable assigned as argument
End Property
Property Get Tag() As String 'Allows accessing
Tag = InternalVariable 'Property assigned value of internal variable
End Property