System.Windows.Forms.XplatUICarbon.GetCursorInfo C# (CSharp) Method

GetCursorInfo() private method

private GetCursorInfo ( IntPtr cursor, int &width, int &height, int &hotspot_x, int &hotspot_y ) : void
cursor System.IntPtr
width int
height int
hotspot_x int
hotspot_y int
return void
		internal override void GetCursorInfo(IntPtr cursor, out int width, out int height, out int hotspot_x, out int hotspot_y) {
			width = 12;
			height = 12;
			hotspot_x = 0;
			hotspot_y = 0;
		}
		
XplatUICarbon