HotXLS Belgeleri İçindekiler Ana sayfa Genel bakış TGridToXLS IXLSWorkbook Ana sayfa İçindekiler Genel bakış

LineStyle özellik

Döndürür or sets the line style for the border. Read/write LongWord

Sözdizimi

property LineStyle: LongWord;

Açıklama

LineStyle can be one of these XlLineStyle constants xlContinuous xlDash xlDashDot xlDashDotDot xlDot xlDouble xlSlantDashDot xlLineStyleNone

Örnek

This example puts a border around the A1:C5 range
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; This example is the same to previous
Workbook.Sheets[1].Range['A1', 'C5'].Borders.LineStyle := xlDot; Copyright © 2010-2026 losLab Software