SysGet()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

SysGet()

OutputVar := Mfunc.SysGet(Sub-command [, Param3])

Mfunc.SysGet(Sub-command [, Param3])

Retrieves screen resolution, multi-monitor info, dimensions of system objects, and other system properties.

Parameters

Sub

command - See list below.

Param3

This parameter is omitted except where noted below.

Returns

Returns the results of the Sub-command

Sub-commands

Can be MfString instance or var containing string.

MonitorCount: Retrieves the total number of monitors. Unlike SM_CMONITORS mentioned in the table below, MonitorCount includes all monitors, even those not being used as part of the desktop.

MonitorPrimary: Retrieves the number of the primary monitor, which will be 1 in a single-monitor system.

Monitor [, N]: Retrieves the bounding coordinates of monitor number N (if N is omitted, the primary monitor is used). The information is stored in four variables whose names all start with OutputVar. If N is too high or there is a problem retrieving the info, the variables are all made blank. For example:

Mon2 := Mfunc.SysGet(*Monitor*, 2)
MsgBox, Left: %Mon2Left% -- Top: %Mon2Top% -- Right: %Mon2Right% -- Bottom %Mon2Bottom%.

Within a function, to create a set of variables that is global instead of local, declare Mon2 as a global variable prior to using this command (the converse is true for assume-global functions).

MonitorWorkArea [, N]: Same as the above except the area is reduced to exclude the area occupied by the taskbar and other registered desktop toolbars.

MonitorName [, N]: The operating system's name for monitor number N (if N is omitted, the primary monitor is used).

(Numeric): Specify for Sub-command one of the numbers from the table below to retrieve the corresponding value. The following example would store the number of mouse buttons in a variable named "MouseButtonCount" MouseButtonCount := Mfunc.SysGet(43).

Commonly Used

Not Commonly Used

0. Normal boot
1. Fail-safe boot
2. Fail-safe with network boot

SM_IMMENABLED indicates whether the system is ready to use a Unicode-based IME on a Unicode application. To ensure that a language-dependent IME works, check SM_DBCSENABLED and the system ANSI code page. Otherwise the ANSI-to-Unicode conversion may not be performed correctly, or some components like fonts or registry setting may not be present.

Remarks

Wrapper for AutoHotkey Docs - SysGet.
Static method.

The built-in variables A_ScreenWidth and A_ScreenHeight contain the dimensions of the primary monitor, in pixels.

Any and/or all parameter for this function can be instance of MfString or var containing string.

See Also:AutoHotkey Docs - SysGet.

Example

; Example #1:
MouseButtonCount := Mfunc.SysGet(43)
VirtualScreenWidth := Mfunc.SysGet(78)
VirtualScreenHeight := Mfunc.SysGet(79)

; Example #2: This is a working script that displays info about each monitor:
MonitorCount := Mfunc.SysGet("MonitorCount")
MonitorPrimary := Mfunc.SysGet("MonitorPrimary")
MsgBox, Monitor Count:`t%MonitorCount%`nPrimary Monitor:`t%MonitorPrimary%
Loop, %MonitorCount%
{
    MonitorName := Mfunc.SysGet("MonitorName", A_Index)
    Monitor := Mfunc.SysGet("Monitor", A_Index)
    MonitorWorkArea := Mfunc.SysGet("MonitorWorkArea", A_Index)


	mfsResult := new MfString()
	mfsResult.Append("Monitor:`t#")
	mfsResult.AppendLine(A_Index)

	mfsResult.Append("Name:`t")
	mfsResult.AppendLine(MonitorName)

	mfsResult.Append("Left:`t")
	mfsResult.Append(MonitorLeft)
	mfsResult.Append("(")
	mfsResult.Append(MonitorWorkAreaLeft)
	mfsResult.AppendLine(" work)")

	mfsResult.Append("Top:`t")
	mfsResult.Append(MonitorTop)
	mfsResult.Append("(")
	mfsResult.Append(MonitorWorkAreaTop)
	mfsResult.AppendLine(" work)")

	mfsResult.Append("Right:`t")
	mfsResult.Append(MonitorRight)
	mfsResult.Append("(")
	mfsResult.Append(MonitorWorkAreaRight)
	mfsResult.AppendLine(" work)")

	mfsResult.Append("Bottom:`t")
	mfsResult.Append(MonitorBottom)
	mfsResult.Append("(")
	mfsResult.Append(MonitorWorkAreaBottom)
	mfsResult.AppendLine(" work)")

    MsgBox % mfsResult.Value
}