Visio control in c#

J

juliet jose

hi.Currently i'm doing a project in c# where i've included visio control. I
would like to know how i can change the colour setting of the document. Also
i wud like to know whether its possibl to remove the gray background on top
of which the page appears. ie i just need to view th page.

url:http://www.ureader.com/gp/1130-1.aspx
 
Y

Yangyong

Sample code:

void VisApp_MouseUp(int Button, int KeyButtonState, double x, double y,
ref bool CancelDefault) {
CancelDefault = true;
}
 
Top