ISEdit.HideSelection

Description

This property is True if the selection of the text is shown only when the specified edit control has focus.

Syntax

object.HideSelection

Part Attribute Type Description
object Required
The object always implements the ISEdit interface

Return Value

bool

Example

Display HideSelection for the specified edit control.

Dim aEdit
Dim aEditInfo

Set aEdit = Form.Controls_("edtInform")
aEditInfo =_
  "Short Name: " & aEdit.ShortName & vbNewLine &_
  "TypeName: " & aEdit.TypeName & vbNewLine &_   
  "Hide Selection: " & aEdit.HideSelection
 
Profile.MsgBox(aEditInfo) 
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Hide Selection can be found in Maintain > Templates > Health Record Collection Templates > Open the selected form template > Open form editor > Object Inspector > Select the edit control in the controls tree > HideSelection.

Version information

Added in v7.8.0