'Declaration Public Property LegendStyle As Style
'Usage Dim instance As DropDownCalendar Dim value As Style instance.LegendStyle = value value = instance.LegendStyle
public Style LegendStyle {get; set;}
'Declaration Public Property LegendStyle As Style
'Usage Dim instance As DropDownCalendar Dim value As Style instance.LegendStyle = value value = instance.LegendStyle
public Style LegendStyle {get; set;}
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