| name | description |
| cfchart | Generates and displays a chart. |
| cfchartdata | Used with the cfchart and cfchartseries tags. This tag defines chart data points. Its data is submitted to the cfchartseries tag. |
| cfchartseries | Used with the cfchart tag. This tag defines the chart style in which the data displays: bar, line, pie, and so on. |
| cfcol | Defines table column header, width, alignment, and text. Used within a cftable tag. |
| cfcontent | Does either or both of the following: |
| cfdocument | Creates PDF or FlashPaper output from a text block containing CFML and HTML. |
| cfdocumentitem | Specifies action items for a PDF or FlashPaper document created by the cfdocument tag. Action items include the following: |
| cfdocumentsection | Divides a PDF or FlashPaper document into sections. By using this tag in conjunction with a cfdocumentitem tag, each section can have unique headers, footers, and page numbers. |
| cfflush | Flushes currently available data to the client. |
| cfheader | Generates custom HTTP response headers to return to the client. |
| cflog | Writes a message to a log file. |
| cfoutput | Displays output that can contain the results of processing ColdFusion variables and functions. Can loop over the results of a database query. |
| cfpdf | Manipulates existing PDF documents. The following list describes some of the tasks you can perform with the cfpdf tag: |
| cfpresentation | Defines the look of a dynamic slide presentation and determines whether to write the presentation files to disk. The cfpresentation tag is the parent tag for one or more cfpresentationslide tags, where you define the content for the presentation, and the cfpresenter tags, which provide information about the people presenting the slides. |
| cfpresentationslide | Creates a slide dynamically from a source file or HTML and CFML code on the ColdFusion page. The cfpresentationslide is a child tag of the cfpresentation tag. |
| cfpresenter | Describes a presenter in a slide presentation. A slide presentation can have multiple presenters. The presenters must be referenced from the slides defined by the cfpresentationslide tag. |
| cfprint | Prints specified pages from a PDF file. Use this tag to perform automated batch print jobs. Use the cfprint tag to print any PDF document, including the ones generated by the cfdocument, cfpdf, and cfpdfform tag. Also, you use this tag to print Report Builder reports exported in PDF format. |
| cfprocessingdirective | Provides the following information to ColdFusion about how to process the current page: |
| cfreport | Used to do either of the following: |
| cfreportparam | The cfreportparam tag lets you perform the following tasks: |
| cfsilent | Suppresses output produced by CFML within a tag’s scope. |
| cftable | Builds a table in a ColdFusion page. This tag renders data as preformatted text, or, with the HTMLTable attribute, in an HTML table. If you don't want to write HTML table tag code, or if your data can be presented as preformatted text, use this tag. |