Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
How checkout icon is displayed on the object/Behavior of checkout icon on the icon?
Hi @TT_9345405
There are some IconDataUtility which cares of the displaying the icon.
for example
com.ptc.windchill.uwgm.cadx.caddoc.dataUtilities.TypeIconDataUtility
PetrH
Hello,
Also another class is useful for icons.
com.ptc.core.components.rendering.guicomponents.IconComponent
example
IconComponent component = new IconComponent("netmarkets/images/success16x16.png");
This component is returned to display icon by a DataUtility
can be used in a table or where is icon displayed..
PetrH