VariableCollection.Description Property
[Read-only] This property returns the template description.
Syntax
string Description [ get ]
Example
' This example opens a variable collection file and displays the number of
' variables it contains, as well as the template's title and description.
dim vc
Set vc = Server.CreateObject ("HotDocs_Online.VariableCollection")
vc.Open "c:\InetPub\wwwroot\templates\template.hvc"
Response.Write "Count: " & vc.Count & "<br>"
Response.Write "Title: " & vc.Title & "<br>"
Response.Write "Description: " & vc.Description & "<br>"