ISEdit.HideAM_PM

Description

This property is True if the AM/PM indicator is hidden.

Syntax

object.HideAM_PM

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

Return Value

bool

Example

Display HideAM_PM for the specified edit control.

Dim aEdit
Dim aEditInfo

Set aEdit = Form.Controls_("edtInform")

aEditInfo =_
  "Short Name: " & aEdit.ShortName & vbNewLine &_
  "TypeName: " & aEdit.TypeName & vbNewLine &_   
  "HideAM_PM: " & aEdit.HideAM_PM
 
Profile.MsgBox(aEditInfo) 
Note: The value of the 'EditKind' property should be set to 'edkdTime'. This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Hide AM_PM 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 > HideAM_PM.

Version information

Added in v7.8.0