Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

Code Block
languagecpp
themeConfluence
 SdaiBoolean edmiIsSubtypeAggr (SdaiAggr aggrId);

Checks if the specified aggregate is a subtype aggregate. Subtype aggregates contains all instances of one particular instance type and all instances that are a subtype of this particular instance type in a data model.

...

Subtype aggregates belongs to an EDMserver session, hence subtype aggregates are not persistent in the EDMdatabase.

...

Arguments

...


TypeNameComment
SdaiAggraggrIdA numeric aggregateID that uniquely identifies the aggregate instance of interest in the EDMdatabase. The aggregateID is returned when the aggregate is created or it can be retrieved with an EDMinterface get operation.

...

   

Return Value

...

TypeComment
 SdaiBoolean sdaiTRUE when the aggregate is a subtype aggregate, otherwise sdaiFALSE.

...

  

Options

...

 

Example

...

 

Code Block
languagecpp
 SdaiBoolean isSubtypeAggr;
 SdaiAggr aggrId;
 . . .
 isSubtypeAggr = edmiIsSubtypeAggr(aggrId);

...


 if (isSubtypeAggr == sdaiTRUE) {

...


 printf("\nAggregate: %lu is a subtype aggregate", aggrId);

...

 
 } else {

...


 printf("\nAggregate: %lu is not a subtype aggregate", aggrId);

...

 
 }
 . . .
  

 

See also

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
cqllabel = "model" and parent = "6062220"