-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update file(s) "/." from "aspose-cells/Aspose.Cells-Python-NET-API-Re…
…ferences"
- Loading branch information
1 parent
7225d47
commit 2398051
Showing
1,031 changed files
with
3,131 additions
and
1,212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,34 @@ is_root: false | |
|
||
|
||
Gets and sets the signature line | ||
|
||
### Example | ||
|
||
|
||
```python | ||
from aspose import pycore | ||
from aspose.cells import Workbook | ||
from aspose.cells.drawing import SignatureLine | ||
import str | ||
|
||
# Instantiating a Workbook object | ||
workbook = Workbook() | ||
worksheet = workbook.worksheets[0] | ||
# Adding a picture at the location of a cell whose row and column indices are 1 in the worksheet. It is "B2" cell | ||
imgIndex = worksheet.pictures.add(1, 1, pycore.cast(str, None)) | ||
# Get the inserted picture object | ||
pic = worksheet.pictures[imgIndex] | ||
# Create signature line object | ||
s = SignatureLine() | ||
s.signer = "Simon" | ||
s.title = "Development" | ||
s.email = "[email protected]" | ||
# Assign the signature line object to Picture. | ||
pic.signature_line = s | ||
# Save the excel file. | ||
workbook.save("result.xlsx") | ||
|
||
``` | ||
### Definition: | ||
```python | ||
@property | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,25 @@ def add_signature_line(self, upper_left_row, upper_left_column, signature_line): | |
| upper_left_column | int | Upper left column index. | | ||
| signature_line | [`SignatureLine`](/cells/python-net/aspose.cells.drawing/signatureline) | Represents a signature line object. | | ||
|
||
### Example | ||
|
||
|
||
```python | ||
from aspose.cells.drawing import SignatureLine | ||
|
||
wSignatureLine = SignatureLine() | ||
wSignatureLine.allow_comments = True | ||
wSignatureLine.email = "[email protected]" | ||
wSignatureLine.instructions = "Sign to confirm the excel content." | ||
wSignatureLine.is_line = True | ||
wSignatureLine.show_signed_date = True | ||
wSignatureLine.signer = "User" | ||
wSignatureLine.title = "tester" | ||
# wSignatureLine.SignatureLineType = SignatureType.Stamp; | ||
signatureLine1 = shapes.add_signature_line(0, 0, wSignatureLine) | ||
|
||
``` | ||
|
||
|
||
|
||
### See Also | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...e/cells-python-net/english/aspose.cells.pivot/pivotfield/clear_filter/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: clear_filter method | ||
second_title: Aspose.Cells for Python via .NET API References | ||
description: | ||
type: docs | ||
weight: 30 | ||
url: /aspose.cells.pivot/pivotfield/clear_filter/ | ||
is_root: false | ||
--- | ||
|
||
## clear_filter {#} | ||
|
||
Clears filter setting on this pivot field. | ||
|
||
|
||
|
||
```python | ||
def clear_filter(self): | ||
... | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
### See Also | ||
* module [`aspose.cells.pivot`](../../) | ||
* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...cells-python-net/english/aspose.cells.pivot/pivotfield/filter_by_date/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
title: filter_by_date method | ||
second_title: Aspose.Cells for Python via .NET API References | ||
description: | ||
type: docs | ||
weight: 40 | ||
url: /aspose.cells.pivot/pivotfield/filter_by_date/ | ||
is_root: false | ||
--- | ||
|
||
## filter_by_date {#aspose.cells.pivot.PivotFilterType-DateTime-DateTime} | ||
|
||
Filters by date setting of row or column pivot field. | ||
|
||
|
||
|
||
```python | ||
def filter_by_date(self, type, date_time1, date_time2): | ||
... | ||
``` | ||
|
||
|
||
| Parameter | Type | Description | | ||
| :- | :- | :- | | ||
| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. | | ||
| date_time1 | DateTime | The date label of filter condition | | ||
| date_time2 | DateTime | The upper-bound date label of between filter condition | | ||
|
||
|
||
|
||
### See Also | ||
* module [`aspose.cells.pivot`](../../) | ||
* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield) |
33 changes: 33 additions & 0 deletions
33
...ells-python-net/english/aspose.cells.pivot/pivotfield/filter_by_label/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
title: filter_by_label method | ||
second_title: Aspose.Cells for Python via .NET API References | ||
description: | ||
type: docs | ||
weight: 50 | ||
url: /aspose.cells.pivot/pivotfield/filter_by_label/ | ||
is_root: false | ||
--- | ||
|
||
## filter_by_label {#aspose.cells.pivot.PivotFilterType-str-str} | ||
|
||
Filters by captions of row or column pivot field. | ||
|
||
|
||
|
||
```python | ||
def filter_by_label(self, type, label1, label2): | ||
... | ||
``` | ||
|
||
|
||
| Parameter | Type | Description | | ||
| :- | :- | :- | | ||
| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. | | ||
| label1 | str | The label of filter condition | | ||
| label2 | str | The upper-bound label of between filter condition | | ||
|
||
|
||
|
||
### See Also | ||
* module [`aspose.cells.pivot`](../../) | ||
* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield) |
Oops, something went wrong.