WLXForm
System`
Context
A standard form used for representing Wolfram expressions on Slides and in WLX cells
By the default it applies Indentity
transformation.
The use cases are the same as for StandardForm.
Example
Depending on where an expression is displayed, one can change its visual representation using MakeBoxes tagset, i.e.
SpecialOne /: MakeBoxes[SpecialOne, StandardForm] := With[{
o = Graphics[{Red, Disk[]}]
},
ViewBox[SpecialOne, o]
]
SpecialOne /: MakeBoxes[SpecialOne, WLXForm] := With[{
o = Graphics[{Blue, Disk[]}] // CreateFrontEndObject
},
o
]
in the normal Wolfram cell an output looks like
while on a slide