Restituisce o imposta lo stile di
linea del bordo. Lettura/scrittura LongWord
Sintassi
Descrizione
LineStyle può essere una di queste costanti XlLineStyle
| xlContinuous |
| xlDash |
| xlDashDot |
| xlDashDotDot |
| xlDot |
| xlDouble |
| xlSlantDashDot |
| xlLineStyleNone |
Esempio
Questo esempio aggiunge un bordo attorno all'intervallo A1:C5
Workbook.Sheets[1].Range['A1', 'C5'].Borders[xlEdgeTop].LineStyle := xlDot;
Workbook.Sheets[1].Range['A1', 'C5'].Borders[xlEdgeRight].LineStyle := xlDot;
Workbook.Sheets[1].Range['A1', 'C5'].Borders[xlEdgeBottom].LineStyle := xlDot;
Workbook.Sheets[1].Range['A1', 'C5'].Borders[xlEdgeLeft].LineStyle := xlDot;
Questo esempio è uguale al precedente