Private Sub LeftExample()
' This example demonstrates how to set and return the Left property.
Dim myLeft As Integer
Application.Left = 2
MsgBox ("Left is: " & Application.Left)
End Sub