How to break line in Comment function?

 

How to add break line in comment?

when i tried it shows last comment.

eg:

Comment("ABC");

Comment("XYZ");

Comment("123");

In Screen which shows final comment only which is "123".

How to display all comments line by line?

 
Put \n where you want the new line, e.g. Comment("ABC\nXYZ\n123");
 
sheriffonline:

How to add break line in comment?

when i tried it shows last comment.

eg:

Comment("ABC");

Comment("XYZ");

Comment("123");

In Screen which shows final comment only which is "123".

How to display all comments line by line?

You can't use multiple Comment() calls . . . use Label Objects or a single Comment() call as shown above . . .
Reason: