Spread Windows Forms 13.0 Product Documentation
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / DropDownCalendar Class / CalendarMargins Property
Example


In This Topic
    CalendarMargins Property (DropDownCalendar)
    In This Topic
    Gets or sets margins for the drop-down calendar.
    Syntax
    '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;}
    Remarks
    This property determines the distance between the calendar display area and the DropDownCalendar border.
    Example
    This example uses the CalendarMargins property.
    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
    See Also