LogoType
.
This customization point is called in GetLogo
in order to define the object from which the logo should be retrieved.
If this object does not have the proper logo properties (e.g. objlogoimage
), no logo is shown.
customize GetLogoContainer<Object> {
cont = expression {
if (cooobj.HasClass(#TeamRoom)) {
cooobj;
}
else {
cooobj.objteamroom != null ? cooobj.objteamroom : null;
}
}
}
Object
FSCVENVUI@1.1001:GetLogoContainer(
key ObjectClass
objclass,
key LogoType
type,
out retval Object
cont)
Name |
Description |
objclass |
applies to objects of the defined object class
|
type |
the type of logo this customization is called for
|
cont |
defines a Fabasoft app.ducx expression to calculate the object that contains the logo (
objlogoimage ) that should be displayed |
Additional Information