ISImage.IncrementalDisplay

Description

This property is True if successive approximations of the image should be drawn during slow operations.

Syntax

object.IncrementalDisplay

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

Return Value

bool

Example

Display IncrementalDisplay for the specified image control.

Dim aImage
Dim aImageInfo

Set aImage = Form.Controls_("Image1")
aImageInfo =_
  "Short Name: " & aImage.ShortName & vbNewLine &_ 
  "Type Name: " & aImage.TypeName & vbNewLine &_
  "Incremental Display: " & aImage.IncrementalDisplay                 
  
Profile.MsgBox(aImageInfo)  
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Incremental Display can be found in Maintain > Templates > Health Record Collection Templates > Open the selected form template > Open form editor > Object Inspector > Select the image control in the controls tree > Properties > IncrementalDisplay.

Version information

Added in v7.8.0