Arbortext IsoView > Programmer's Reference > Object Functions > Iso3HighlightObject
  
Iso3HighlightObject
Highlights an object. (See Object Highlighting Constants – Iso3HighlightObject for constant values.)
Introduced with Arbortext IsoView 3.0.
Syntax
Iso3HighlightObjectobjExprflagscolor
Parameters:
objExpr
defines the object expression identifying for one or multiple objects as BSTR.
flags
Defines the display attributes as long. Allowed values are:
0
HIDE
2
FRAME
4
FILL
8
FLASH
* 
Add values to combine attributes.
color
Defines the RGB color as 32-bit unsigned integer. This value can be calculated as follows: color = r + g*256 + b*65536, with r, g and b indicating the colors red, green and blue in a range between 0 and 255.
document.ivx1.Iso3HighlightObject("id(myObj1)",
8, RGB(128,128,0) );

<script language="JavaScript">
function RGB( r, g, b )
{
return ( r + g*256 + b*65536 );
}
</script>