Expand my Community achievements bar.

Adobe Summit 2025: AEM Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Discard colour when prints

Avatar

Level 7

I have apply a solid colour as background for a subform.

Is it possible when prints to discard the background colour?

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

You can use the following in the prePrint event of the subform:

this.border.fill.presence = "invisible";

and this in the postPrint:

this.border.fill.presence = "visible";

Good luck,

Niall

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi,

You can use the following in the prePrint event of the subform:

this.border.fill.presence = "invisible";

and this in the postPrint:

this.border.fill.presence = "visible";

Good luck,

Niall

Avatar

Level 7

THANKS Niall!