导航:  Windows Controls Procedures > Rich Edit Control > Structures >

FINDTEXTEX

上一页返回章节概述下一页

描述

 

The FINDTEXTEX structure contains information about text to search for in a rich edit control. This structure is used with the EM_FINDTEXTEX message.

 

C/C++ 语法

 

typedef struct _findtextex {

CHARRANGE chrg;

LPCTSTR lpstrText;

CHARRANGE chrgText;

} FINDTEXTEX;

 

FreeBasic Syntax

 

TYPE FINDTEXTEXW

chrg      AS CHARRANGE

lpstrText AS LPCWSTR

chrgText  AS CHARRANGE

END TYPE

 

成员

 

chrg

 

A CHARRANGE structure that specifies the range of characters to search.

 

lpstrText

 

Pointer to the null-terminated string used in the find operation.

 

chrgText

 

A CHARRANGE structure that receives the range of characters in which the text was found. If the text was not found, cpMin and cpMax are -1.

 

最低操作系统

 

Windows 95, Windows NT 4.0.