I'm new to PowerPoint interop and I'm trying to draw red pen and yellow text marker (not shapes!!!) lines while in presentation mode.
UPDATE:
I can draw a line like this:
settings = presentation.SlideShowSettings;
window = settings.Run();
window.View.DrawLine(startX, startY, endX, endY);
But the line will always be black and thin. How can I select the red pen or yellow text marker for it?
Aside from the DrawLine method, I can select the pen for the user (mouse cursor becomes a pen instead of arrow) by setting:
window.View.PointerType = PpSlideShowPointerType.ppSlideShowPointerPen;
window.View.PointerColor.RGB = 255;
But how can I set it to text marker? yellow would be 65535, how do I get the text marker style (bigger pen, transparency) instead of the tiny solid pen?
SlideShowWindows[0]
? – qJake