Element Details: Passed+Shared+Element
 Back


Available in: Logi Info Source code name: PassedSharedElementIntroduced in: 12.2.116

PassedSharedElement passes an element from the calling definition into a SharedElement definition.

In a SharedElement, add an IncludeSharedElement which will get content from the calling definition. For the IncludeSharedElement, set the DefinitionFile attribute to "PassedSharedElement". In a calling definition, add an IncludeSharedElement with a PassedSharedElement to indicate where the content goes. Then be sure to have Shared Element ID in a SharedElement definition set to the ID of the Passed Shared Element from the calling report.

Example calling definition:
<IncludeSharedElement
DefinitionFile="mySharedDefinitions"
SharedElementID="mySharedElement"
>
<PassedSharedElement
ID="passedID"
>
<Label
Caption="This is passed to the shared element."
/>
</PassedSharedElement>
</IncludeSharedElement>

Example called definition:
<SharedElement
ID="mySharedElement"
>
<IncludeSharedElement
DefinitionFile="PassedSharedElement"
SharedElementID="passedID" />
</SharedElement>




ATTRIBUTES

Click attribute Name to drill down for more information.

NamePossible ValuesDescription
ID
UserDefined
(Required) The ID attribute is a pervasive attribute that uniquely identifies an element within a definition file. The ID needs to be a unique value within the definition.



PARENT ELEMENTS

Click element to drill down for more information.

Include Shared Element


CHILD ELEMENTS

Click element to drill down for more information.



 Back to top