Spread Windows Forms 12.0 Product Documentation
ShowToday Property (DropDownCalendar)
Example 


GrapeCity.Win.PluginInputMan Assembly > GrapeCity.Win.Spread.InputMan.CellType Namespace > DropDownCalendar Class : ShowToday Property
Gets or sets a value that indicates whether to show the today legend.
Syntax
'Declaration
 
Public Property ShowToday As Boolean
'Usage
 
Dim instance As DropDownCalendar
Dim value As Boolean
 
instance.ShowToday = value
 
value = instance.ShowToday
public bool ShowToday {get; set;}

Property Value

A bool value that indicates whether to show the today legend.The default is false.
Remarks
This property determines whether to show the today legend at the bottom of this calendar.
Example
This example uses the ShowToday property.
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
inputcell.DropDownCalendar.LegendStyle = new GrapeCity.Win.Spread.InputMan.CellType.Style(Color.Azure, Color.Black);
inputcell.DropDownCalendar.ShowToday = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
inputcell.DropDownCalendar.LegendStyle = New GrapeCity.Win.Spread.InputMan.CellType.Style(Color.Azure, Color.Black)
inputcell.DropDownCalendar.ShowToday = True
fpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
See Also

Reference

DropDownCalendar Class
DropDownCalendar Members