Text glow transparency (614)

Hi how can i get this 60% value of transparency, i am able to get jsut color and radius as you can see in code below.
file: GlowEffect.pptx.zip (21.8 KB)

picture Screenshot from 2018-04-03 12-04-27.png (21.7 KB)

code:

String path = "GlowEffect.pptx";
Presentation presentation = new Presentation(path);
ISlide slide = presentation.getSlides().get_Item(0);
AutoShape shape = (AutoShape) slide.getShapes().get_Item(0);
IParagraph paragraph = shape.getTextFrame().getParagraphs().get_Item(0);
IPortionCollection portions = paragraph.getPortions();
IPortion portion = portions.get_Item(0);
 IGlowEffectiveData glowEffect = portion.createPortionFormatEffective().getEffectFormat().getGlowEffect();
 
 System.out.println(glowEffect.getColor());
 System.out.println(glowEffect.getRadius());

Thanks,
Zeljko

@Zeljko,

I have observed your comments. An issue with ID SLIDESJAVA-36986 has been created in our issue tracking system to further investigate and resolve the issue. This thread has been linked with the issue so that you may be automatically notified once the issue will be fixed.