add_field_to_area方法
add_field_to_area(field_type, field_name)
将字段添加到特定区域。
返回
特定字段中的字段位置。如果没有以它命名的字段,则返回-1。
def add_field_to_area(self, field_type, field_name):
...
范围 | 类型 | 描述 |
---|---|---|
field_type | PivotFieldType | 字段区域类型。 |
field_name | str | 基本字段中的名称。 |
add_field_to_area(field_type, base_field_index)
将字段添加到特定区域。
返回
特定字段中的字段位置。
def add_field_to_area(self, field_type, base_field_index):
...
范围 | 类型 | 描述 |
---|---|---|
field_type | PivotFieldType | 字段区域类型。 |
base_field_index | int | 基字段中的字段索引。 |
add_field_to_area(field_type, pivot_field)
将字段添加到特定区域。
返回
特定字段中的字段位置。
def add_field_to_area(self, field_type, pivot_field):
...
范围 | 类型 | 描述 |
---|---|---|
field_type | PivotFieldType | 字段区域类型。 |
pivot_field | PivotField | 基域中的域。 |