|
다음은 컴파일러에 포함된 Visual Component Library Reference Help의 내용입니다.
참고하세요..^^
TFindOption, TFindOptions types
Determines the controls that appear in a find dialog.
Unit
Dialogs
enum TFindOption {frDown, frFindNext, frHideMatchCase, frHideWholeWord, frHideUpDown, frMatchCase, frDisableMatchCase, frDisableUpDown, frDisableWholeWord, frReplace, frReplaceAll, frWholeWord, frShowHelp};
typedef Set<TFindOption, frDown, frShowHelp> TFindOptions;
Description
TFindOption values determine which controls are enabled in a TFindDialog instance, and how the controls are initialized.
TFindOptions is a set of TFindOption values.
The following table lists the possible values:
Value Meaning
frDisableMatchCase Disables (grays) the Match Case check box in a find dialog.
frDisableUpDown Disables (grays) the Up and Down buttons, which determine the direction of the search.
frDisableWholeWord Disables (grays) the Match Whole Word check box of find dialog.
frDown Selects the Down button by default when the dialog opens. If the frDown flags is off, Up is selected when the dialog opens. (By default, frDown is on.) <---- 여기찾으시는 내용이 있네요..
frFindNext This flag is turned on when the user clicks the Find Next button and turned off when the dialog closes.
frHideMatchCase Removes the Match Case check box from the dialog.
frHideWholeWord Removes the Match Whole Word check box from the dialog.
frHideUpDown Removes the Up and Down buttons from the dialog.
frMatchCase This flag is turned on (off) when the user selects (deselects) the Match Case check box. To select the check box by default when the dialog opens, set frMatchCase at design time.
frReplace Applies to TReplaceDialog only. This flag is set by the system to indicate that the application should replace the current occurrence (and only the current occurrence) of the FindText string with the ReplaceText string. Not used in search routines.
frReplaceAll Applies to TReplaceDialog only. This flag is set by the system to indicate that the application should replace all occurrences of the FindText string with the ReplaceText string.
frShowHelp Displays a Help button in the dialog.
frWholeWord This flag is turned on (off) when the user selects (deselects) the Match Whole Word check box. To select the check box by default when the dialog opens, set frWholeWord at design time.
공윤경 님이 쓰신 글 :
: FindDialog를 사용했는데 검색은 되는데 위로 아래로를 선택하는거랑 상관없이 무조건 상위부터 검색해 내려오는데 위로를 선택하면 아래서부터.. 아니..커서가 있는 지점의 위로 올라가게하려면...
:
: 부탁드립니다.
|