parameters

E

Eskimo

the c# code:
....
private OracleCommand GetInsertCommand(int aFTPUSAGEID,
string aFILENAME,
DateTime aWHENCREATED)
....


in visio - in the uml class diagram, the parameters show up like this:

-GetInsertCommand: (in aFTPUSAGEID: string, in aFILENAME: string, in
aWHENCREATED: DateTime) all on one line.

this is ok but what happens when I have over 5 or 6 parameters? the class
diagram shows them but increases the width of the class on the page over the
page size.

Is there any way to tell the parameter list to go down a line for each
parameter?
e.g. -GetInsertCommand: (in aFTPUSAGEID: string,<NEWLINE HERE>
in aFILENAME: string,<NEWLINE HERE>
in aWHENCREATED: DateTime)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top