You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Tile - FindReference Method
Find an object stored as a RelatedReference
Member of Tile (PRIM_TILE)

Parameters

Name

Type

Data Type

Description

Result

*Result (Optional)

PRIM_TILE.TileItem

Reference to the first item containing the reference

RelatedReference

*Input

PRIM_OBJT

Object to be searched for

StartItem

*Input (Optional)

PRIM_TILE.TileItem

Item at which to start the search

Details


The FindReference method searches for the object specified in the RelatedReference parameter in the RelatedReference property of the Tile items.
FindReference processing will stop when an item is returned or no item is found.

Example


In this example the found items are given a style to highlight them.
Mthroutine Name(Find)
Define_Map For(*Input) Class(#Prim_objt) Name(#Object) Pass(*By_Reference)
Define_Com Class(#prim_Tile.TileItem) Name(#FoundItem) Reference(*Dynamic)
Begin_Loop
#FoundItem <= #Tile.FindReference( #Object #FoundItem )
Leave If(#FoundItem *Is *Null)
#FoundItem.Style <= #MyStyles&ltHighlight>
End_Loop
Endroutine

See also

All Component Classes
Technical Reference

  • No labels