Help Center

CRichEdit.GetBidiOptionsmethod

Indicates the current state of the bidirectional options in the rich edit control.

Windowsmethoddocumented

Syntax

PRIVATE SUB CRichEdit.GetBidiOptions (BYVAL hRichEdit AS HWND, BYVAL lpbo AS BIDIOPTIONS PTR)

Parameters

NameDescription
hRichEditThe handle of the rich edit control.
lpboA pointer to a BIDIOPTIONS structure that receives the current state of the bidirectional options in the rich edit control.

Description

Indicates the current state of the bidirectional options in the rich edit control.

Remarks

This message sets the values of the wMask and wEffects members to the value of the current state of the bidirectional options in the rich edit control.

Example

SUB GetBidiOptions (BYVAL hRichEdit AS HWND, BYVAL lpbo AS BIDIOPTIONS PTR) SendMessageW hRichEdit, EM_GETBIDIOPTIONS, 0, cast(LPARAM, lpbo) END SUB

Reference

  • Defined in AfxNova/CRichEdit.inc:373
  • Documented in Windows/WIndows Controls/CRichEdit Class.md
  • Topic: CRichEdit Class