Spread WPF 18
GrapeCity.Drawing Namespace / IDrawingContext Interface / DrawBorder Method
The borderLineData
The x-coordinate of the start point of the line.
The y-coordinate of the start point of the line.
The x-coordinate of the end point of the line.
The y-coordinate of the end point of the line.


In This Topic
    DrawBorder Method
    In This Topic
    Draws a border between the specified points using the specified GrapeCity.Spreadsheet.BorderLine.
    Syntax
    'Declaration
     
    Sub DrawBorder( _
       ByVal borderLine As BorderLine, _
       ByVal x As Double, _
       ByVal y As Double, _
       ByVal x2 As Double, _
       ByVal y2 As Double _
    ) 
    'Usage
     
    Dim instance As IDrawingContext
    Dim borderLine As BorderLine
    Dim x As Double
    Dim y As Double
    Dim x2 As Double
    Dim y2 As Double
     
    instance.DrawBorder(borderLine, x, y, x2, y2)
    void DrawBorder( 
       BorderLine borderLine,
       double x,
       double y,
       double x2,
       double y2
    )

    Parameters

    borderLine
    The borderLineData
    x
    The x-coordinate of the start point of the line.
    y
    The y-coordinate of the start point of the line.
    x2
    The x-coordinate of the end point of the line.
    y2
    The y-coordinate of the end point of the line.
    See Also