I'm trying to hide a text inside a slide (or TextBox) by using OpenXML SDK. How Do I hide the text without the user seeing it?
I tried to set the opacity using Drawing.Run method but it doesn't support the HexCode having length greater than 6. The powerpoint shows the warning message to Repair the presentation after that.
The code I've tried is :
Drawing.RgbColorModelHex rgbColorModelHex2 = new Drawing.RgbColorModelHex() { Val = "00FFFFFF" };
On my research there is a vanish property in DocumentFormat.OpenXml.Wordprocessing for hiding text on Word but couldn't find vanish on powerpoint. Is there any similar property in powerpoint ? or else how do I hide a text ?
Thanks in advance