العمل مع الحدود في أباتشي بوي وأسبوز.سيلس

أسبوز.سيلس - العمل مع الحدود

توفر Aspose.Cells فئة، Workbook التي تمثل ملف Microsoft Excel. تحتوي الفئة Workbook على مجموعة WorksheetCollection التي تسمح بالوصول لكل ورقة عمل في ملف Excel. تُمثل ورقة العمل بواسطة فئة Worksheet. توفر فئة الورقة العمل Cellscollection. يمثل كل عنصر في مجموعة Cells كائنًا من الفئة Cell.

توفر Aspose.Cells الطريقة setStyle في الفئة Cell المستخدمة لتعيين نمط تنسيق الخلية. أيضا، يتم استخدام كائن Style من الفئة Style ويوفر خصائص لضبط إعدادات الخط.

Java

 // Style the cell with borders all around.

Style style = workbook.createStyle();

style.setBorder(BorderType.BOTTOM_BORDER, CellBorderType.THIN, Color.getBlack());

style.setBorder(BorderType.LEFT_BORDER, CellBorderType.THIN, Color.getGreen());

style.setBorder(BorderType.RIGHT_BORDER, CellBorderType.THIN, Color.getBlue());

style.setBorder(BorderType.TOP_BORDER, CellBorderType.MEDIUM_DASH_DOT, Color.getBlack());

// Setting style to the cell

cell.setStyle(style);

أباتشي بوي إس إس - إتش إس إس إف - العمل مع الحدود

توفر فئة CellStyle ميزات لتعيين إعدادات الحدود باستخدام أباتشي بوي إس إس - إتش إس إس إف.

Java

 //Setting the line of the top border

style.setBorder(BorderType.TOP_BORDER,CellBorderType.THICK,Color.getBlack());

//Setting the line of the bottom border

style.setBorder(BorderType.BOTTOM_BORDER,CellBorderType.THICK,Color.getBlack());

//Setting the line of the left border

style.setBorder(BorderType.LEFT_BORDER,CellBorderType.THICK,Color.getBlack());

//Setting the line of the right border

style.setBorder(BorderType.RIGHT_BORDER,CellBorderType.THICK,Color.getBlack());

//Saving the modified style to the "A1" cell.

cell.setStyle(style);

تحميل رمز التشغيل

تحميل رمز عينة