'Declaration Public Property CalendarMargins As Padding
'Usage Dim instance As DropDownCalendar Dim value As Padding instance.CalendarMargins = value value = instance.CalendarMargins
public Padding CalendarMargins {get; set;}
'Declaration Public Property CalendarMargins As Padding
'Usage Dim instance As DropDownCalendar Dim value As Padding instance.CalendarMargins = value value = instance.CalendarMargins
public Padding CalendarMargins {get; set;}
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType(); inputcell.DropDownCalendar.BackgroundImage = System.Drawing.Image.FromFile("C:\\Program Files (x86)\\GrapeCity\\fplogo.png"); inputcell.DropDownCalendar.BackgroundImageLayout = ImageLayout.Stretch; inputcell.DropDownCalendar.CalendarMargins = new System.Windows.Forms.Padding(5); fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType() inputcell.DropDownCalendar.BackgroundImage = System.Drawing.Image.FromFile("C:\Program Files (x86)\GrapeCity\fplogo.png") inputcell.DropDownCalendar.BackgroundImageLayout = ImageLayout.Stretch inputcell.DropDownCalendar.CalendarMargins = New System.Windows.Forms.Padding(5) fpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell