cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X

how do i set the current sheet number to a current model

ss-10-11-12
1-Newbie

how do i set the current sheet number to a current model

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..

1 REPLY 1
sjuraj
13-Aquamarine
(To:ss-10-11-12)

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);

Top Tags