Home
last modified time | relevance | path

Searched refs:pageRange (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-basic-services-kit/
H A D_print___print_attributes.md20 | [Print_Range](_print___range.md)[pageRange](#pagerange) | 打印范围. |
107 ### pageRange subsection
110 Print_Range Print_PrintAttributes::pageRange
H A Djs-apis-print-sys.md132 | pageRange | PrinterRange | 是 | 表示打印范围大小 |
723 pageRange : {},
787 pageRange : {},
934 pageRange : {},
995 pageRange : {},
2125 pageRange?: print.PrintPageRange;
2147 printAttributes.pageRange = new MyPrintPageRange();
2148 printAttributes.pageRange.startPage = 0;
2149 printAttributes.pageRange.endPage = 5;
2150 printAttributes.pageRange.pages = [1, 3];
H A Djs-apis-print.md703 pageRange: {
735 | pageRange | PrintPageRange | 否 | 表示待打印文件的页面范围 |
/ohos5.0/docs/en/application-dev/reference/apis-basic-services-kit/
H A D_print___print_attributes.md20 | [Print_Range](_print___range.md)[pageRange](#pagerange) | Defines the page range. |
107 ### pageRange subsection
110 Print_Range Print_PrintAttributes::pageRange
H A Djs-apis-print-sys.md132 | pageRange | PrinterRange | Yes| Print range.|
831 pageRange : {},
895 pageRange : {},
1042 pageRange : {},
1103 pageRange : {},
2233 pageRange?: print.PrintPageRange;
2255 printAttributes.pageRange = new MyPrintPageRange();
2256 printAttributes.pageRange.startPage = 0;
2257 printAttributes.pageRange.endPage = 5;
2258 printAttributes.pageRange.pages = [1, 3];
H A Djs-apis-print.md703 pageRange: {
735 | pageRange | PrintPageRange | No| Page range of the file to print.|
/ohos5.0/base/print/print_fwk/frameworks/ohprint/src/
H A Dprint_capi.cpp130 if (attr->pageRange.pagesArray != nullptr) { in ReleasePrintAttributes()
131 delete [] attr->pageRange.pagesArray; in ReleasePrintAttributes()
132 attr->pageRange.pagesArray = nullptr; in ReleasePrintAttributes()
514 attributes->pageRange = printRange; in BuildPrintAttributes()
/ohos5.0/base/web/webview/ohos_interface/include/ohos_adapter/
H A Dprint_manager_adapter.h44 PrintRangeAdapter pageRange; member
/ohos5.0/base/print/print_fwk/frameworks/models/print_models/src/
H A Dprint_attributes.cpp92 void PrintAttributes::SetPageRange(const PrintRange &pageRange) in SetPageRange() argument
95 pageRange_ = pageRange; in SetPageRange()
H A Dprint_job.cpp132 void PrintJob::SetPageRange(const PrintRange &pageRange) in SetPageRange() argument
134 pageRange_ = pageRange; in SetPageRange()
/ohos5.0/base/print/print_fwk/frameworks/models/print_models/include/
H A Dprint_attributes.h44 void SetPageRange(const PrintRange &pageRange);
H A Dprint_job.h54 void SetPageRange(const PrintRange &pageRange);
/ohos5.0/base/print/print_fwk/frameworks/ohprint/include/
H A Dohprint.h472 Print_Range pageRange; member
/ohos5.0/base/web/webview/ohos_adapter/print_manager_adapter/src/
H A Dprint_manager_adapter_impl.cpp123 printAttributesAdapter.pageRange = printRangeAdapter; in ConvertPrintingParameters()
/ohos5.0/base/web/webview/interfaces/kits/napi/webviewcontroller/
H A Dnapi_webview_controller.cpp4885 void ParsePrintRangeAdapter(napi_env env, napi_value pageRange, PrintAttributesAdapter& printAttr) in ParsePrintRangeAdapter() argument
4887 if (!pageRange) { in ParsePrintRangeAdapter()
4894 napi_get_named_property(env, pageRange, "startPage", &startPage); in ParsePrintRangeAdapter()
4895 napi_get_named_property(env, pageRange, "endPage", &endPage); in ParsePrintRangeAdapter()
4897 NapiParseUtils::ParseUint32(env, startPage, printAttr.pageRange.startPage); in ParsePrintRangeAdapter()
4900 NapiParseUtils::ParseUint32(env, endPage, printAttr.pageRange.endPage); in ParsePrintRangeAdapter()
4902 napi_get_named_property(env, pageRange, "pages", &pages); in ParsePrintRangeAdapter()
4910 printAttr.pageRange.pages.push_back(pagesNum); in ParsePrintRangeAdapter()
5006 napi_value pageRange = nullptr; in ParseWebPrintAttrParams() local
5015 napi_get_named_property(env, obj, "pageRange", &pageRange); in ParseWebPrintAttrParams()
[all …]