ISFamilyProblem.IsDeleted

Description

This property value is True if the family problem was deleted.

Syntax

object.IsDeleted

Part Attribute Type Description
object Required
The object always implements the ISFamilyProblem interface
Restriction: This property is readonly.

Return Value

bool

Example

Display some information about the family problems loaded on the basis of the selected filter including IsDeleted for the family problems.

Dim aPatient
Dim aFilter
Dim aFamilyProblems, aFamilyProblem
Dim aMessage
Dim i

Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateFamilyProblemFilter
aFilter.PatientID = aPatient.ID
set aFamilyProblems = aFilter.Load

aMessage = "Family Problems Count: "  & aFamilyProblems.Count & vbNewLine &_
  "#" & vbTab & "Date" & vbTab & vbTab &_
  "DxDescription" & vbtab & "IsDeleted"

for i = 0 to aFamilyProblems.Count - 1 
  set aFamilyProblem = aFamilyProblems.Items(i)
  aMessage = aMessage & vbNewLine & (i + 1) & vbTab &_
    aFamilyProblem.Date & vbTab & vbTab & aFamilyProblem.DxDescription & vbTab &_
    vbTab & aFamilyProblem.IsDeleted
    
next 

Profile.MsgBox(aMessage)   
Note:

In Profile Client v8 on User Interface Family Problems can be found and deleted in Clinical > Clinical Details > Family > Social History.

Version information

Added in v8.4.0