ScreenHwndクラス Bottomプロパティ
スクリーン座標でのスクリーン下値を取得します。
使用法
Dim instance As ScreenHwnd
Dim returnValue As Integer

returnValue = instance.Bottom
使用例
'ScreenHwndクラス Bottomプロパティ

Imports System.Windows.Forms

Public Class AddIn

	Private shw As ScreenHwnd

	Public Sub New()
		shw = New ScreenHwnd()
		MessageBox.Show(shw.Bottom.ToString)
	End Sub

End Class