Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
can anyone help me to set the current sheet number to a currentmodel.
Iam just tried //currentmodel.SetCurrentSheetNumber()----it doesn't work
can anybody guide me to get correct coding..
Have you tryed to cast your Model to Drawing ?
e.g.:
Drawing drw = (Drawing) session.GetCurrentModel;
int sheetNum = 5; // for example 5
drw.SetCurrentSheetNumber(sheetNum);