AddPipeEntry(Name, Value, Description)
Adds a pipe section to the pipeline diagram.
Parameters
- Name. Specifies the name of the pipe section to show in the pipeline legend. This parameter accepts a WideString value.
- Value. Specifies the percentage that the pipe section takes in the pipeline diagram. This parameter accepts an integer value.
- Description. Specifies the tooltip that appears when the user points to the pipe section.
- Url. Specifies the URL (such as web page or ASP page) to open when the user clicks the pipe section.
Examples
MyPipe = CRM.GetBlock('pipeline');
MyPipe.AddPipeEntry('Sold', 100,'100 items sold', 'http://www.mydomain.com');
MyPipe.AddPipeEntry('Prospect', 40,'40 prospects', 'http://www.yahoo.com');
CRM.AddContent(MyPipe.Execute());
Response.Write(CRM.GetPage());