Function Reference


_GUICtrlEdit_SetRECTNP

Sets the formatting rectangle of a multiline edit control

#include <GuiEdit.au3>
_GUICtrlEdit_SetRECTNP ( $hWnd, $aRect )

Parameters

$hWnd Control ID/Handle to the control
$aRect Array in the following format:
[0] - Specifies the x-coordinate of the upper-left corner of the rectangle.
[1] - Specifies the y-coordinate of the upper-left corner of the rectangle.
[2] - Specifies the x-coordinate of the lower-right corner of the rectangle.
[3] - Specifies the y-coordinate of the lower-right corner of the rectangle.

Return Value

None.

Remarks

The _GUICtrlEdit_SetRECTNP() function is identical to the _GUICtrlEdit_SetRECT() function, except that _GUICtrlEdit_SetRECTNP() does not redraw the edit control window.

Related

_GUICtrlEdit_SetRectNPEx

Example

#include <GUIConstantsEx.au3>
#include <GuiEdit.au3>
#include <GuiStatusBar.au3>
#include <WindowsConstants.au3>

Example()

Func Example()
        Local $hStatusBar, $idEdit, $hGUI
        Local $sWow64 = ""
        If @AutoItX64 Then $sWow64 = "\Wow6432Node"
        Local $sFile = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE" & $sWow64 & "\AutoIt v3\AutoIt", "InstallDir") & "\include\_ReadMe_.txt"
        Local $aPartRightSide[6] = [50, 87, 87, 87, 87, -1], $aRect

        ; Create GUI
        $hGUI = GUICreate("Edit Set RECTNP", 400, 300)
        $idEdit = GUICtrlCreateEdit("", 2, 2, 394, 268, BitOR($ES_WANTRETURN, $WS_VSCROLL))
        $hStatusBar = _GUICtrlStatusBar_Create($hGUI, $aPartRightSide)
        _GUICtrlStatusBar_SetIcon($hStatusBar, 5, 97, "shell32.dll")
        _GUICtrlStatusBar_SetText($hStatusBar, "Rect")
        GUISetState(@SW_SHOW)

        ; Get Rect
        $aRect = _GUICtrlEdit_GetRECT($idEdit)
        $aRect[0] += 10
        $aRect[1] += 10
        $aRect[2] -= 10
        $aRect[3] -= 10

        ; Add Text
        _GUICtrlEdit_AppendText($idEdit, FileRead($sFile))
        _GUICtrlEdit_LineScroll($idEdit, 0, _GUICtrlEdit_GetLineCount($idEdit) * -1)

        ; Set Rect
        _GUICtrlEdit_SetRECTNP($idEdit, $aRect)

        ; Get Rect
        $aRect = _GUICtrlEdit_GetRECT($idEdit)
        _GUICtrlStatusBar_SetText($hStatusBar, "Left: " & $aRect[0], 1)
        _GUICtrlStatusBar_SetText($hStatusBar, "Topt: " & $aRect[1], 2)
        _GUICtrlStatusBar_SetText($hStatusBar, "Right: " & $aRect[2], 3)
        _GUICtrlStatusBar_SetText($hStatusBar, "Bottom: " & $aRect[3], 4)

        ; Loop until the user exits.
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>Example