Function Reference

_GUICtrlRichEdit_GetParaAttributes

(最初の)段落または(選択されていない場合は)現在の段落の属性を取得します。

#Include <GuiRichEdit.au3>
_GUICtrlRichEdit_GetParaAttributes($hWnd)

 

パラメータ

$hWnd コントロールのハンドル

 

返し値

成功: セミコロン(;)で区切られた値で構成される文字列:
値の1つ目から10個目: 以下から成るグループ:
1文字目から3文字目 - 属性
fpg - これらの段落を新しいページにする (初期設定ではオフ)
hyp - 自動ハイフネーション (初期設定ではオン)
kpt - これらの段落を同じページにする (初期設定ではオフ)
kpn - これらの段落と次の段落を同じページにする (初期設定ではオフ)
pwo - こららのパラグラフがページ上で1行になることを防ぐ (初期設定ではオフ)
r2l - 右から左むきの順でテキストを表示する (初期設定ではオフ)
sbs - 段落を並べて表示 (初期設定ではオフ)
sln - ドキュメントまたは複数行の選択部の行数を抑制する (初期設定ではオフ)
tbl - 段落はテーブルの行 (初期設定ではオフ)
4文字目 - 状態:
+ - 属性オン
- - 属性オフ
値の11個目 - 範囲:
f - 最初の選択された段落にこれらの属性が設定されています。
c - 現在の段落にこれらの属性が設定されています。
失敗: ""を返し、@errorを設定します。
@error: 101 - $hWndがハンドルではありません。

 

注意

なし。

 

関連

_GUICtrlRichEdit_SetParaAttributes

 

こちらも参照

MSDNライブラリでEM_SETPARAFORMATを検索して下さい。

 


#AutoIt3Wrapper_Au3Check_Parameters= -d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiRichEdit.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

Global $lblMsg, $hRichEdit

Main()

Func Main()
    Local $hGui, $iMsg, $btnNext, $iStep = 0
    $hGui = GUICreate("Example (" & StringTrimRight(@ScriptName,4) &")", 320, 350, -1, -1)
    $hRichEdit = _GUICtrlRichEdit_Create($hGui, "This is a test.", 10, 10, 300, 220, _
            BitOR($ES_MULTILINE, $WS_VSCROLL, $ES_AUTOVSCROLL))
    $lblMsg = GUICtrlCreateLabel("", 10, 235, 300, 60)
    $btnNext = GUICtrlCreateButton("Next", 270, 310, 40, 30)
    GUISetState()

    _GuiCtrlRichEdit_AppendText($hRichEdit, "First paragraph")
    Report("First paragraph: default attributes")

    While True
        $iMsg = GUIGetMsg()
        Select
            Case $iMsg = $GUI_EVENT_CLOSE
                GUIDelete()
                Exit
            Case $iMsg = $btnNext
                $iStep += 1
                Switch $iStep
                    Case 1
                        _GuiCtrlRichEdit_AppendText($hRichEdit, @CR & "Second paragraph")
                        _GUICtrlRichEdit_SetParaAttributes($hRichEdit, "-hyp")
                        Report("Second paragraph: hyphenation off")
                    Case 2
                        _GuiCtrlRichEdit_SetSel($hRichEdit, 10, -1)
                        _GUICtrlRichEdit_SetParaAttributes($hRichEdit, "-hyp;+fpg;+kpn")
                        Report("Attributes of first paragraph in selection")
                    Case 3
                        ; Wordで属性を確認できるように全てのテキストをデスクトップに保存
                        _GuiCtrlRichEdit_Deselect($hRichEdit)
                        _GuiCtrlRichEdit_StreamToFile($hRichEdit, @DesktopDir & "\gcre.rtf")
                        GUICtrlSetState($btnNext, $GUI_DISABLE)
                EndSwitch
        EndSelect
    WEnd
EndFunc   ;==>Main

Func Report($sMsg)
    $sMsg = $sMsg & @CR & @CR & "Get function returns "  & @CR & _GUICtrlRichEdit_GetParaAttributes($hRichEdit)
    GUICtrlSetData($lblMsg, $sMsg)
    ControlFocus($hRichEdit, "", "")
EndFunc   ;==>Report