public interface IltLinkTechnologyCustomization
IltLinkTechnologyCustomization
specifies the properties that
can be customized for IltLink.Technology
using CSS.
The following extract illustrates how a technology can be configured
using CSS. The cascading style sheets are loaded using the method
IltSettings.setStyleSheets(String[])
.
setting."ilog.tgo.model.IltLink.Technology"[name="PacketSwitching"] { icon: '@|image("icon-ps.png")'; color: 'white'; }The same configuration can be achieved using the method
IltSettings.SetValue(Object, Object)
, as
illustrated below:
IltSettings.SetValue("Link.Technology.PacketSwitching.Icon", icon); IltSettings.SetValue("Link.Technology.PacketSwitching.Color", Color.white);
Modifier and Type | Method and Description |
---|---|
Color |
getColor()
Returns the color for applicable telecom objects.
|
Image |
getIcon()
Returns the icon for applicable telecom objects.
|
Image getIcon()
setting."ilog.tgo.model.IltLink.Technology"[name="PacketSwitching"] { icon: '@|image("icon-ps.png")'; }
Color getColor()
setting."ilog.tgo.model.IltLink.Technology"[name="PacketSwitching"] { color: white; }
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.