Re: Adding Descriptions to properties and methods???

2011-08-16 Thread Thierry Nivelet
FWIW, here is the convention we use: - Description in end-of-line comment at class, method and parameter level - Each parameter is on a separate line. DEFINE CLASS myClass AS someClass description PROCEDURE myProc description LPARAMETERS ; Parm1; [default value] description , Parm2; @

Adding Descriptions to properties and methods???

2011-08-15 Thread Matt Slay
In a class definitions contained in a VCX, you can add a Description to each custom property and method that you define. However, I am creating a class definitions in a PRG file, and I want to know if there is a standard way of using comments or some other kind of markup in the class

RE: Adding Descriptions to properties and methods???

2011-08-15 Thread Tracy Pearson
Matt Slay wrote on 2011-08-15: In a class definitions contained in a VCX, you can add a Description to each custom property and method that you define. However, I am creating a class definitions in a PRG file, and I want to know if there is a standard way of using comments or some