ISFamilyProblem.StatusAsString

Description

The text presentation of the patient's status for the family problem.

Syntax

object.StatusAsString

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

Return Value

string

Example

Display some information about the family problems loaded on the basis of the selected filter including the patient's statuses.

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 & "Age" & vbTab & "Date" & vbTab & vbTab & "Dx Description" &_
  vbTab & "Status" & vbTab & "Status As String" 

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

Profile.MsgBox(aMessage)   
Note:

In Profile Client v8 on User Interface Status As String can be found in Clinical > Clinical Details > Family > Social History > Status.

Version information

Added in v7.8.0