ضبط ارتفاع الصف وعرض العمود في Ruby

Aspose.Cells - ضبط ارتفاع الصف وعرض العمود

ضبط ارتفاع الصف

من الممكن تعيين ارتفاع صف واحد عن طريق استدعاء طريقة setRowHeight لمجموعة Cells. تأخذ طريقة setRowHeight المعلمات التالية:

  • مؤشر الصف, مؤشر الصف الذي كنت تغير ارتفاعه.
  • ارتفاع الصف, ارتفاع الصف المطبق على الصف.

كود Ruby

 def set_row_height()

    data_dir = File.dirname(File.dirname(File.dirname(__FILE__))) + '/data/'



    # Instantiating a Workbook object by excel file path

    workbook = Rjb::import('com.aspose.cells.Workbook').new(data_dir + 'Book1.xls')

    # Accessing the first worksheet in the Excel file

    worksheet = workbook.getWorksheets().get(0)

    cells = worksheet.getCells()

    # Setting the height of the second row to 13

    cells.setRowHeight(1, 13)

    # Saving the modified Excel file in default (that is Excel 2003) format

    workbook.save(data_dir + "Set Row Height.xls")

    puts "Set Row Height Successfully."

end

ضبط عرض العمود

قم بتعيين عرض عمود عن طريق استدعاء طريقة setColumnWidth لمجموعة Cells. تأخذ طريقة setColumnWidth المعلمات التالية:

  • فهرس العمود, فهرس العمود الذي تريد تغيير عرضه.
  • عرض العمود, العرض المطلوب للعمود.

كود Ruby

 def set_column_width()

    data_dir = File.dirname(File.dirname(File.dirname(__FILE__))) + '/data/'



    # Instantiating a Workbook object by excel file path

    workbook = Rjb::import('com.aspose.cells.Workbook').new(data_dir + 'Book1.xls')

    # Accessing the first worksheet in the Excel file

    worksheet = workbook.getWorksheets().get(0)

    cells = worksheet.getCells()

    # Setting the width of the second column to 17.5

    cells.setColumnWidth(1, 17.5)

    # Saving the modified Excel file in default (that is Excel 2003) format

    workbook.save(data_dir + "Set Column Width.xls")

    puts "Set Column Width Successfully."

end

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

تنزيل ضبط ارتفاع الصف وعرض العمود (Aspose.Cells) من أي من مواقع البرمجة الاجتماعية المذكورة أدناه: