A relationship between two charts, part of an FsChartMetadata.

 

Syntax
struct FsChartRelationship
{
    const char* fromChartGuid;
    const char* toChartGuid;
    int toChartPage;
    FsChartRelationshipType type;
    FsChartProcedureIdentifier procedure;
    bool hasProcedure;
};

 

Members
MemberDescription
fromChartGuidThe GUID of the chart the relationship is from.
toChartGuidThe GUID of the chart the relationship is to.
toChartPageThe specific page number (0-indexed) in the “to” chart at which the relationship applies, if applicable. If -1, the relationship applies to all pages of the chart.
typeType of the relationship.
procedureThe procedure for which the relationship is applicable, if any. Only valid if hasProcedure is true.
hasProcedureWhether procedure is present and valid.

 

Remarks

N/A