طريقة set_table_formula
محتويات
[
يخفي
]set_table_formula(self, row_number, column_number, row_input_cell, column_input_cell, values)
قم بإنشاء جدول بيانات مكون من متغيرين للنطاق المحدد بدءًا من هذه الخلية.
def set_table_formula(self, row_number, column_number, row_input_cell, column_input_cell, values):
...
| معامل | يكتب | وصف |
|---|---|---|
| row_number | int | عدد الصفوف لملء الصيغة. |
| column_number | int | عدد الأعمدة لملء الصيغة. |
| row_input_cell | str | خلية إدخال الصف |
| column_input_cell | str | خلية إدخال العمود |
| values | list | قيم الخلايا في نطاق صيغة الجدول |
set_table_formula(self, row_number, column_number, input_cell, is_row_input, values)
قم بإنشاء جدول بيانات مكون من متغير واحد للنطاق المحدد بدءًا من هذه الخلية.
def set_table_formula(self, row_number, column_number, input_cell, is_row_input, values):
...
| معامل | يكتب | وصف |
|---|---|---|
| row_number | int | عدد الصفوف لملء الصيغة. |
| column_number | int | عدد الأعمدة لملء الصيغة. |
| input_cell | str | خلية الإدخال |
| is_row_input | bool | يشير إلى ما إذا كانت خلية الإدخال عبارة عن خلية إدخال صف (صحيح) أو خلية إدخال عمود (خطأ). |
| values | list | قيم الخلايا في نطاق صيغة الجدول |
set_table_formula(self, row_number, column_number, row_index_of_input_cell, column_index_of_input_cell, is_row_input, values)
قم بإنشاء جدول بيانات مكون من متغير واحد للنطاق المحدد بدءًا من هذه الخلية.
def set_table_formula(self, row_number, column_number, row_index_of_input_cell, column_index_of_input_cell, is_row_input, values):
...
| معامل | يكتب | وصف |
|---|---|---|
| row_number | int | عدد الصفوف لملء الصيغة. |
| column_number | int | عدد الأعمدة لملء الصيغة. |
| row_index_of_input_cell | int | مؤشر الصف للخلية المدخلة |
| column_index_of_input_cell | int | فهرس عمود خلية الإدخال |
| is_row_input | bool | يشير إلى ما إذا كانت خلية الإدخال عبارة عن خلية إدخال صف (صحيح) أو خلية إدخال عمود (خطأ). |
| values | list | قيم الخلايا في نطاق صيغة الجدول |
set_table_formula(self, row_number, column_number, row_index_of_row_input_cell, column_index_of_row_input_cell, row_index_of_column_input_cell, column_index_of_column_input_cell, values)
قم بإنشاء جدول بيانات مكون من متغيرين للنطاق المحدد بدءًا من هذه الخلية.
def set_table_formula(self, row_number, column_number, row_index_of_row_input_cell, column_index_of_row_input_cell, row_index_of_column_input_cell, column_index_of_column_input_cell, values):
...
| معامل | يكتب | وصف |
|---|---|---|
| row_number | int | عدد الصفوف لملء الصيغة. |
| column_number | int | عدد الأعمدة لملء الصيغة. |
| row_index_of_row_input_cell | int | مؤشر الصف لخلية إدخال الصف |
| column_index_of_row_input_cell | int | فهرس عمود خلية إدخال الصف |
| row_index_of_column_input_cell | int | مؤشر الصف لخلية إدخال العمود |
| column_index_of_column_input_cell | int | فهرس العمود لخلية إدخال العمود |
| values | list | قيم الخلايا في نطاق صيغة الجدول |
أنظر أيضا
- الوحدة
aspose.cells - فئة
Cell