Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. 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