System.Windows.Forms.XplatUIX11.GetCursorInfo C# (CSharp) 메소드

GetCursorInfo() 개인적인 메소드

private GetCursorInfo ( IntPtr cursor, int &width, int &height, int &hotspot_x, int &hotspot_y ) : void
cursor IntPtr
width int
height int
hotspot_x int
hotspot_y int
리턴 void
		internal override void GetCursorInfo(IntPtr cursor, out int width, out int height, out int hotspot_x, out int hotspot_y) {
			width = 20;
			height = 20;
			hotspot_x = 0;
			hotspot_y = 0;
		}
XplatUIX11