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

Calendar.TitleTemplate Property

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

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

Remarks

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

Following is an example of putting HTML into title 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