バージョン

Cursor プロパティ (TaskBarTextUIElement)

この要素にマウス ポインターが置かれたときに表示される Cursor を返します。
シンタックス
'宣言
 
Public Overrides ReadOnly Property Cursor As Cursor
public override Cursor Cursor {get;}
使用例
Imports System.Windows.Forms

Public Overrides ReadOnly Property Cursor() As Cursor

    Get
        Return Cursors.Hand
    End Get

End Property
using System.Windows.Forms;

public override Cursor Cursor
{

	get
	{
		return Cursors.Hand ;
	}

}
参照