void ShowLogo()
{
Image logoImage;
try
{
if (imageContainer)
{
logoImage = new Image();
logoImage.setData(imageContainer);
Signature.image(logoImage);
Signature.widthValue(logoImage.width());
Signature.heightValue(logoImage.height());
}
else
{
Signature.image(null);
}
}
catch (Exception::Warning)
{
throw error(strFmt(/@SYS19312/, imageFilePathName));
}
}
please help me with what should i use instead of deprecated methods mentioned below .
André Arnaud de Cal...
291,971
Super User 2025 Season 1
Martin Dráb
230,846
Most Valuable Professional
nmaenpaa
101,156