Site Map | About Us | Contact Us  
 The same content in Microsoft HTML help file format is included in the download package.

Calendar.FooterTemplate Property

Specifies any customized HTML to be displayed in a calendar's footer area.

[Visual Basic]
Public Property FooterTemplate As ClientTemplate
[C#]
public ClientTemplate FooterTemplate {get; set;}

Remarks

Use this property to define customized HTML in footer area. You can include any HTML tags and define your own variable by using var keyword.

Following is an example of putting HTML into footer area. In template, it defines a built in variable today and its displaying format (MM/dd/yyyy):
[HTML] 
<div style="FONT-WEIGHT: bold; FONT-SIZE: 11px; FONT-FAMILY: Tahoma"">
        <img src="{img:00040106}"> Today: {var:today:MM/dd/yyyy}
</div>

See Also

Calendar Class | EO.Web Namespace


Direct link to this topic