diff --git a/en/application-dev/reference/apis/js-apis-pasteboard.md b/en/application-dev/reference/apis/js-apis-pasteboard.md
index 00802493ea68efd037b17e0712d78b755d131059..be28e4b7590f1671660228d3e78f2e822451a847 100644
--- a/en/application-dev/reference/apis/js-apis-pasteboard.md
+++ b/en/application-dev/reference/apis/js-apis-pasteboard.md
@@ -1,149 +1,214 @@
# Pasteboard
-The **pasteboard** module provides the pasteboard management client and pasteboard server. The pasteboard management client manages pasteboard APIs. Specifically, it provides pasteboard APIs in JavaScript for applications, creates pasteboard data on the application framework side, and requests the pasteboard SA to create, delete, query, convert text, and configure pasteboards. The pasteboard server manages pasteboard events as well as the pasteboard SA lifecycle, providing support for the copy and paste functions of the system.
+The **pasteboard** module provides the copy and paste support for the system pasteboard. You can use the APIs of this module to operate pasteboard content of the plain text, HTML, URI, Want, pixel map, and other types.
> **NOTE**
->
+>
> The initial APIs of this module are supported since API version 6. Newly added APIs will be marked with a superscript to indicate their earliest API version.
-
## Modules to Import
-
-```
+```js
import pasteboard from '@ohos.pasteboard';
```
-
## Attributes
**System capability**: SystemCapability.MiscServices.Pasteboard
-| Name | Type | Readable | Writable | Description |
+| Name| Type| Readable| Writable| Description|
| -------- | -------- | -------- | -------- | -------- |
-| MAX_RECORD_NUM7+ | number | Yes | No | Maximum number of records allowed in a **PasteData** object. |
-| MIMETYPE_TEXT_HTML7+ | string | Yes | No | MIME type of the HTML text. |
-| MIMETYPE_TEXT_WANT7+ | string | Yes | No | MIME type of the Want text. |
-| MIMETYPE_TEXT_PLAIN7+ | string | Yes | No | MIME type of the plain text. |
-| MIMETYPE_TEXT_URI7+ | string | Yes | No | MIME type of the URI text. |
+| MAX_RECORD_NUM7+ | number | Yes| No| Maximum number of records in a **PasteData** object.|
+| MIMETYPE_TEXT_HTML7+ | string | Yes| No| MIME type of the HTML content.|
+| MIMETYPE_TEXT_WANT7+ | string | Yes| No| MIME type of the Want content.|
+| MIMETYPE_TEXT_PLAIN7+ | string | Yes| No| MIME type of the plain text content.|
+| MIMETYPE_TEXT_URI7+ | string | Yes| No| MIME type of the URI content.|
+| MIMETYPE_PIXELMAP9+ | string | Yes| No| MIME type of the pixel map.|
## pasteboard.createPlainTextData
-createPlainTextData(text:string): PasteData
+createPlainTextData(text: string): PasteData
-Creates a **PasteData** object for plain text.
+Creates a **PasteData** object of the plain text type.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| text | string | Yes | Plain text. |
+| text | string | Yes| Plain text.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteData](#pastedata) | **PasteData** object with the specified content. |
+| [PasteData](#pastedata) | **PasteData** object.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("content");
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("content");
+```
## pasteboard.createHtmlData7+
-createHtmlData(htmlText:string): PasteData
+createHtmlData(htmlText: string): PasteData
-Creates a **PasteData** object for HTML text.
+Creates a **PasteData** object of the HTML type.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| htmlText | string | Yes | HTML text. |
+| htmlText | string | Yes| HTML content.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteData](#pastedata) | **PasteData** object with the specified content. |
+| [PasteData](#pastedata) | **PasteData** object.|
**Example**
- ```js
- var html = "\n" + "\n" + "
\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
- var pasteData = pasteboard.createHtmlData(html);
- ```
+```js
+var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
+var pasteData = pasteboard.createHtmlData(html);
+```
## pasteboard.createWantData7+
-createWantData(want:Want): PasteData
+createWantData(want: Want): PasteData
-Creates a **PasteData** object for Want text.
+Creates a **PasteData** object of the Want type.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| want | [Want](js-apis-application-Want.md) | Yes | Want text. |
+| want | [Want](js-apis-application-Want.md) | Yes| Want content.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteData](#pastedata) | **PasteData** object with the specified content. |
+| [PasteData](#pastedata) | **PasteData** object.|
**Example**
- ```js
- var object = {
- bundleName: "com.example.aafwk.test",
- abilityName: "com.example.aafwk.test.TwoAbility"
- };
- var pasteData = pasteboard.createWantData(object);
- ```
+```js
+var object = {
+ bundleName: "com.example.aafwk.test",
+ abilityName: "com.example.aafwk.test.TwoAbility"
+};
+var pasteData = pasteboard.createWantData(object);
+```
## pasteboard.createUriData7+
-createUriData(uri:string): PasteData
+createUriData(uri: string): PasteData
-Creates a **PasteData** object for URI text.
+Creates a **PasteData** object of the URI type.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| uri | string | Yes | URI text. |
+| uri | string | Yes| URI content.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteData](#pastedata) | **PasteData** object with the specified content. |
+| [PasteData](#pastedata) | **PasteData** object.|
+
+**Example**
+
+```js
+var pasteData = pasteboard.createUriData("dataability:///com.example.myapplication1/user.txt");
+```
+
+
+## pasteboard.createPixelMapData9+
+
+createPixelMapData(pixelMap: image.PixelMap): PasteData
+
+Creates a **PasteData** object of the pixel map type.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Parameters**
+
+| Name| Type| Mandatory| Description|
+| -------- | -------- | -------- | -------- |
+| pixelMap | [image.PixelMap](js-apis-image.md#pixelmap7) | Yes| Pixel map.|
+
+**Return value**
+
+| Type| Description|
+| -------- | -------- |
+| [PasteData](#pastedata) | **PasteData** object.|
+
+**Example**
+
+```js
+import image from '@ohos.multimedia.image';
+
+var buffer = new ArrayBuffer(128)
+var opt = {
+ size: { height: 3, width: 5 },
+ pixelFormat: 3,
+ editable: true,
+ alphaType: 1,
+ scaleMode: 1
+}
+image.createPixelMap(buffer, opt).then((pixelMap) => {
+ var pasteData = pasteboard.createPixelMapData(pixelMap);
+})
+```
+
+## pasteboard.createData9+
+
+createData(mimeType: string, value: ArrayBuffer): PasteData;
+
+Creates a **PasteData** object of a custom type.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Parameters**
+
+| Name| Type| Mandatory| Description|
+| -------- | -------- | -------- | -------- |
+| mimeType | string | Yes| MIME type of custom data.|
+| value | ArrayBuffer | Yes| Content of custom data.|
+
+**Return value**
+
+| Type| Description|
+| -------- | -------- |
+| [PasteData](#pastedata) | **PasteData** object.|
**Example**
```js
- var pasteData = pasteboard.createUriData("dataability:///com.example.myapplication1?user.txt");
+ var dataXml = new ArrayBuffer(256)
+ var pasteData = pasteboard.createData('app/xml', dataXml)
```
## pasteboard.createPlainTextRecord7+
-createPlainTextRecord(text:string): PasteDataRecord
+createPlainTextRecord(text: string): PasteDataRecord
Creates a **PasteDataRecord** object of the plain text type.
@@ -151,26 +216,26 @@ Creates a **PasteDataRecord** object of the plain text type.
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| text | string | Yes | Plain text. |
+| text | string | Yes| Plain text.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteDataRecord](#pastedatarecord7) | New plain text record. |
+| [PasteDataRecord](#pastedatarecord7) | New **PasteDataRecord** object of the plain text type.|
**Example**
- ```js
- var record = pasteboard.createPlainTextRecord("hello");
- ```
+```js
+var record = pasteboard.createPlainTextRecord("hello");
+```
## pasteboard.createHtmlTextRecord7+
-createHtmlTextRecord(htmlText:string): PasteDataRecord
+createHtmlTextRecord(htmlText: string): PasteDataRecord
Creates a **PasteDataRecord** object of the HTML text type.
@@ -178,172 +243,277 @@ Creates a **PasteDataRecord** object of the HTML text type.
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| htmlText | string | Yes | HTML text. |
+| htmlText | string | Yes| HTML content.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteDataRecord](#pastedatarecord7) | New HTML record. |
+| [PasteDataRecord](#pastedatarecord7) | **PasteDataRecord** object of the HTML text type.|
**Example**
- ```js
- var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
- var record = pasteboard.createHtmlTextRecord(html);
- ```
+```js
+var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
+var record = pasteboard.createHtmlTextRecord(html);
+```
## pasteboard.createWantRecord7+
-createWantRecord(want:Want): PasteDataRecord
+createWantRecord(want: Want): PasteDataRecord
-Creates a **PasteDataRecord** object of the Want text type.
+Creates a **PasteDataRecord** object of the Want type.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| want | [Want](js-apis-application-Want.md) | Yes | Want text. |
+| want | [Want](js-apis-application-Want.md) | Yes| Want content.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteDataRecord](#pastedatarecord7) | New Want record. |
+| [PasteDataRecord](#pastedatarecord7) | New **PasteDataRecord** object of the Want type.|
**Example**
- ```js
- var object = {
- bundleName: "com.example.aafwk.test",
- abilityName: "com.example.aafwk.test.TwoAbility"
- };
- var record = pasteboard.createWantRecord(object);
- ```
+```js
+var object = {
+ bundleName: "com.example.aafwk.test",
+ abilityName: "com.example.aafwk.test.TwoAbility"
+};
+var record = pasteboard.createWantRecord(object);
+```
## pasteboard.createUriRecord7+
-createUriRecord(uri:string): PasteDataRecord
+createUriRecord(uri: string): PasteDataRecord
+
+Creates a **PasteDataRecord** object of the URI type.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Parameters**
+
+| Name| Type| Mandatory| Description|
+| -------- | -------- | -------- | -------- |
+| uri | string | Yes| URI content.|
+
+**Return value**
+
+| Type| Description|
+| -------- | -------- |
+| [PasteDataRecord](#pastedatarecord7) | New **PasteDataRecord** object of the URI type.|
+
+**Example**
+
+```js
+var record = pasteboard.createUriRecord("dataability:///com.example.myapplication1/user.txt");
+```
+
-Creates a **PasteDataRecord** object of the URI text type.
+## pasteboard.createPixelMapRecord9+
+
+createPixelMapRecord(pixelMap: image.PixelMap): PasteDataRecord
+
+Creates a **PasteDataRecord** object of the pixel map type.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Parameters**
+
+| Name| Type| Mandatory| Description|
+| -------- | -------- | -------- | -------- |
+| pixelMap | [image.PixelMap](js-apis-image.md#pixelmap7) | Yes| Pixel map.|
+
+**Return value**
+
+| Type| Description|
+| -------- | -------- |
+| [PasteDataRecord](#pastedatarecord7) | New **PasteDataRecord** object of the pixel map type.|
+
+**Example**
+
+```js
+import image from '@ohos.multimedia.image';
+
+var buffer = new ArrayBuffer(128)
+var opt = {
+ size: { height: 3, width: 5 },
+ pixelFormat: 3,
+ editable: true,
+ alphaType: 1,
+ scaleMode: 1
+}
+image.createPixelMap(buffer, opt).then((pixelMap) => {
+ var record = pasteboard.createPixelMapRecord(pixelMap);
+})
+```
+
+## pasteboard.createRecord9+
+
+createRecord(mimeType: string, value: ArrayBuffer):PasteDataRecord;
+
+Creates a **PasteDataRecord** object of the custom type.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| uri | string | Yes | URI text. |
+| mimeType | string | Yes| MIME type of custom data.|
+| value | ArrayBuffer | Yes| Content of custom data.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteDataRecord](#pastedatarecord7) | New URI record. |
+| [PasteDataRecord](#pastedatarecord7) | New **PasteDataRecord** object of the custom type.|
**Example**
```js
- var record = pasteboard.createUriRecord("dataability:///com.example.myapplication1?user.txt");
+ var dataXml = new ArrayBuffer(256)
+ var pasteDataRecord = pasteboard.createRecord('app/xml', dataXml);
```
+## pasteboard.getSystemPasteboard
+
+getSystemPasteboard(): SystemPasteboard
+
+Obtains this **SystemPasteboard** object.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Return value**
+
+| Type| Description|
+| -------- | -------- |
+| [SystemPasteboard](#systempasteboard) | **SystemPasteboard** object.|
+
+**Example**
+
+```js
+var systemPasteboard = pasteboard.getSystemPasteboard();
+```
+
+## ShareOption9+
+
+Enumerates the paste options of data.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+| Name | Description |
+| ----- | ----------------------- |
+| InApp |Only intra-application pasting is allowed. |
+| LocalDevice |Paste is allowed in any application on the local device. |
+| CrossDevice |Paste is allowed in any application across devices. |
+
+
## PasteDataProperty7+
Defines the properties of all data records on the pasteboard, including the timestamp, data type, and additional data.
**System capability**: SystemCapability.MiscServices.Pasteboard
-| Name | Type | Readable | Writable | Description |
+| Name| Type| Readable| Writable| Description|
| -------- | -------- | -------- | -------- | -------- |
-| additions | {[key: string]: object} | Yes | Yes | Additional property data. |
-| mimeTypes | Array<string> | Yes | No | Non-repeating data types of the data records on the pasteboard. |
-| tag | string | Yes | Yes | User-defined tag. |
-| timestamp | number | Yes | No | Timestamp at which the data is written to the pasteboard, in milliseconds. |
-| localOnly | boolean | Yes | Yes | Whether local access only is set for the pasteboard.
- The default value is **true**.
- **true**: The **PasteData** is set for local access only.
- **false**: The **PasteData** can be shared between devices. |
+| additions7+ | {[key:string]:object} | Yes| Yes| Additional data.|
+| mimeTypes7+ | Array<string> | Yes| No| Non-repeating data types of the data records on the pasteboard.|
+| tag7+ | string | Yes| Yes| Custom tag.|
+| timestamp7+ | number | Yes| No| Timestamp when data is written to the pasteboard (unit: ms).|
+| localOnly7+ | boolean | Yes| Yes| Whether the pasteboard content is set for local access only. The default value is **true**.
- **true**: The pasteboard content is set for local access only.
- **false**: The pasteboard content can be shared between devices.|
+| shareOption9+ | [ShareOption](#shareoption9) | Yes| Yes| Where the pasteboard content can be pasted. If this attribute is set incorrectly or not set, the default value **CrossDevice** is used.|
## PasteDataRecord7+
-A data record is an abstract definition of the content on the pasteboard. The pasteboard content consists of one or more plain text, HTML, URI, or Want records.
+Provides **PasteDataRecord** APIs. A **PasteDataRecord** is an abstract definition of the content on the pasteboard. The pasteboard content consists of one or more plain text, HTML, URI, or Want records.
### Attributes
**System capability**: SystemCapability.MiscServices.Pasteboard
-| Name | Type | Readable | Writable | Description |
+| Name| Type| Readable| Writable| Description|
| -------- | -------- | -------- | -------- | -------- |
-| htmlText7+ | string | Yes | No | HTML text. |
-| want7+ | [Want](js-apis-application-Want.md) | Yes | No | Want text. |
-| mimeType7+ | string | Yes | No | Data type. |
-| plainText7+ | string | Yes | No | Plain text. |
-| uri7+ | string | Yes | No | URI text. |
+| htmlText7+ | string | Yes| No| HTML content.|
+| want7+ | [Want](js-apis-application-Want.md) | Yes| No| Want content.|
+| mimeType7+ | string | Yes| No| Data type.|
+| plainText7+ | string | Yes| No| Plain text.|
+| uri7+ | string | Yes| No| URI content.|
+| pixelMap9+ | [image.PixelMap](js-apis-image.md#pixelmap7) | Yes| No| Pixel map.|
+| data9+ | {[mimeType: string]: ArrayBuffer} | Yes| No| Content of custom data.|
### convertToText7+
convertToText(): Promise<string>
-Forcibly converts the content in this **PasteData** object to the plain text. This API uses a promise to return the result.
+Forcibly converts the content in a **PasteData** object to text. This API uses a promise to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| Promise<void> | Promise used to return the result. If the operation is successful, the plain text content after conversion is returned. Otherwise, error information is returned. |
+| Promise<string> | Promise used to return the text obtained from the conversion.|
**Example**
- ```js
- var record = pasteboard.createUriRecord("dataability:///com.example.myapplication1?user.txt");
- record.convertToText().then((data) => {
- console.info('convertToText success data : ' + JSON.stringify(data));
- }).catch((error) => {
- console.error('convertToText failed because ' + JSON.stringify(error));
- });
- ```
+```js
+var record = pasteboard.createUriRecord("dataability:///com.example.myapplication1/user.txt");
+record.convertToText().then((data) => {
+ console.info('Succeeded in converting to text. Data: ' + JSON.stringify(data));
+}).catch((err) => {
+ console.error('Failed to convert to text. Cause: ' + JSON.stringify(err));
+});
+```
### convertToText7+
convertToText(callback: AsyncCallback<string>): void
-Forcibly converts the content in this **PasteData** object to the plain text. This API uses an asynchronous callback to return the result.
+Forcibly converts the content in a **PasteData** object to text. This API uses an asynchronous callback to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| callback | AsyncCallback<string> | Yes | Callback used to return the result. If this callback is successful, the plain text content after conversion is returned. Otherwise, error information is returned. |
+| callback | AsyncCallback<string> | Yes| Callback used to return the result. If the operation is successful, **err** is **undefined** and **data** is the text obtained from the conversion. Otherwise, **err** is error information.|
**Example**
- ```js
- var record = pasteboard.createUriRecord("dataability:///com.example.myapplication1?user.txt");
- record.convertToText((err, data) => {
- if (err) {
- console.error('convertToText failed because ' + JSON.stringify(err));
- return;
- }
- console.info('convertToText success data : ' + JSON.stringify(data));
- });
- ```
+```js
+var record = pasteboard.createUriRecord("dataability:///com.example.myapplication1/user.txt");
+record.convertToText((err, data) => {
+ if (err) {
+ console.error('Failed to convert to text. Cause: ' + JSON.stringify(err));
+ return;
+ }
+ console.info('Succeeded in converting to text. Data: ' + JSON.stringify(data));
+});
+```
## PasteData
-Before calling any **PasteData** method, you must obtain a **PasteData** object.
+Provides **PasteData** APIs.
+
+Before calling any **PasteData** API, you must obtain a **PasteData** object.
**System capability**: SystemCapability.MiscServices.Pasteboard
@@ -356,93 +526,126 @@ getPrimaryText(): string
Obtains the plain text of the primary record.
-
**System capability**: SystemCapability.MiscServices.Pasteboard
-**Return value**
+**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| string | Plain text. |
+| string | Plain text.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var plainText = pasteData.getPrimaryText();
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var plainText = pasteData.getPrimaryText();
+```
### getPrimaryHtml7+
getPrimaryHtml(): string
-Obtains the HTML text of the primary record.
+Obtains the HTML content of the primary record.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| string | HTML text. |
+| string | HTML content.|
**Example**
- ```js
- var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
- var pasteData = pasteboard.createHtmlData(html);
- var htmlText = pasteData.getPrimaryHtml();
- ```
+```js
+var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
+var pasteData = pasteboard.createHtmlData(html);
+var htmlText = pasteData.getPrimaryHtml();
+```
### getPrimaryWant7+
getPrimaryWant(): Want
-Obtains the **Want** object of the primary record.
+Obtains the Want object of the primary record.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [Want](js-apis-application-Want.md) | Want object. |
+| [Want](js-apis-application-Want.md) | Want object.|
**Example**
- ```js
- var object = {
- bundleName: "com.example.aafwk.test",
- abilityName: "com.example.aafwk.test.TwoAbility"
- };
- var pasteData = pasteboard.createWantData(object);
- var want = pasteData.getPrimaryWant();
- ```
+```js
+var object = {
+ bundleName: "com.example.aafwk.test",
+ abilityName: "com.example.aafwk.test.TwoAbility"
+};
+var pasteData = pasteboard.createWantData(object);
+var want = pasteData.getPrimaryWant();
+```
### getPrimaryUri7+
getPrimaryUri(): string
-Obtains the URI text of the primary record.
+Obtains the URI of the primary record.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| string | URI text. |
+| string | URI content.|
**Example**
- ```js
- var pasteData = pasteboard.createUriData("dataability:///com.example.myapplication1?user.txt");
- var uri = pasteData.getPrimaryUri();
- ```
+```js
+var pasteData = pasteboard.createUriData("dataability:///com.example.myapplication1/user.txt");
+var uri = pasteData.getPrimaryUri();
+```
+
+
+### getPrimaryPixelMap9+
+
+getPrimaryPixelMap(): image.PixelMap
+
+Obtains the pixel map of the primary record.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Return value**
+
+| Type| Description|
+| -------- | -------- |
+| [image.PixelMap](js-apis-image.md#pixelmap7) | Pixel map.|
+
+**Example**
+
+```js
+import image from '@ohos.multimedia.image';
+
+var buffer = new ArrayBuffer(128)
+var opt = {
+ size: { height: 3, width: 5 },
+ pixelFormat: 3,
+ editable: true,
+ alphaType: 1,
+ scaleMode: 1
+}
+image.createPixelMap(buffer, opt).then((pixelMap) => {
+ var pasteData = pasteboard.createPixelMapData(pixelMap);
+ var pixelMap = pasteData.getPrimaryPixelMap();
+})
+```
### addTextRecord7+
@@ -451,98 +654,158 @@ addTextRecord(text: string): void
Adds a plain text record to this pasteboard, and adds **MIME_TEXT_PLAIN** to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
-The pasteboard supports a maximum number of 128 data records.
+The pasteboard supports a maximum number of 512 data records.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| text | string | Yes | Plain text. |
+| text | string | Yes| Plain text.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- pasteData.addTextRecord("good");
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+pasteData.addTextRecord("good");
+```
### addHtmlRecord7+
addHtmlRecord(htmlText: string): void
-Adds an HTML text record to this pasteboard, and adds **MIMETYPE_TEXT_HTML** to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
+Adds an HTML record to this pasteboard, and adds **MIMETYPE_TEXT_HTML** to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
-The pasteboard supports a maximum number of 128 data records.
+The pasteboard supports a maximum number of 512 data records.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| htmlText | string | Yes | HTML text. |
+| htmlText | string | Yes| HTML content.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
- pasteData.addHtmlRecord(html);
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
+pasteData.addHtmlRecord(html);
+```
### addWantRecord7+
addWantRecord(want: Want): void
-Adds a Want text record to this pasteboard, and adds **MIMETYPE_TEXT_WANT** to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
+Adds a Want record to this pasteboard, and adds **MIMETYPE_TEXT_WANT** to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
-The pasteboard supports a maximum number of 128 data records.
+The pasteboard supports a maximum number of 512 data records.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| want | [Want](js-apis-application-Want.md) | Yes | Want object. |
+| want | [Want](js-apis-application-Want.md) | Yes| Want object.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var object = {
- bundleName: "com.example.aafwk.test",
- abilityName: "com.example.aafwk.test.TwoAbility"
- };
- pasteData.addWantRecord(object);
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var object = {
+ bundleName: "com.example.aafwk.test",
+ abilityName: "com.example.aafwk.test.TwoAbility"
+};
+pasteData.addWantRecord(object);
+```
### addUriRecord7+
addUriRecord(uri: string): void
-Adds a URI text record to this pasteboard, and adds **MIMETYPE_TEXT_URI** to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
+Adds a URI record to this pasteboard, and adds **MIMETYPE_TEXT_URI** to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
-The pasteboard supports a maximum number of 128 data records.
+The pasteboard supports a maximum number of 512 data records.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| uri | string | Yes | URI text. |
+| uri | string | Yes| URI content.|
+
+**Example**
+
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+pasteData.addUriRecord("dataability:///com.example.myapplication1/user.txt");
+```
+
+### addPixelMapRecord9+
+
+addPixelMapRecord(pixelMap: image.PixelMap): void
+
+Adds a pixel map record to this pasteboard, and adds **MIMETYPE_PIXELMAP** to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
+
+The pasteboard supports a maximum number of 512 data records.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Parameters**
+
+| Name| Type| Mandatory| Description|
+| -------- | -------- | -------- | -------- |
+| pixelMap | [image.PixelMap](js-apis-image.md#pixelmap7) | Yes| Pixel map.|
+
+**Example**
+
+```js
+import image from '@ohos.multimedia.image';
+
+var buffer = new ArrayBuffer(128)
+var opt = {
+ size: { height: 3, width: 5 },
+ pixelFormat: 3,
+ editable: true,
+ alphaType: 1,
+ scaleMode: 1
+}
+image.createPixelMap(buffer, opt).then((pixelMap) => {
+ var record = pasteboard.createPlainTextData("hello").addPixelMapRecord(pixelMap);
+})
+```
+
+
+### addRecord9+
+
+addRecord(mimeType: string, value: ArrayBuffer): void
+
+Adds a custom-type record to this pasteboard, and adds the custom type to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
+
+The pasteboard supports a maximum number of 512 data records.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Parameters**
+
+| Name| Type| Mandatory| Description|
+| -------- | -------- | -------- | -------- |
+| mimeType | string | Yes| MIME type of custom data.|
+| value | ArrayBuffer | Yes| Content of custom data.|
**Example**
```js
- var pasteData = pasteboard.createPlainTextData("hello");
- pasteData.addUriRecord("dataability:///com.example.myapplication1?user.txt");
+ var pasteData = pasteboard.createUriData("dataability:///com.example.myapplication1/user.txt");
+ var dataXml = new ArrayBuffer(256)
+ pasteData.addRecord('app/xml', dataXml);
```
@@ -552,423 +815,427 @@ addRecord(record: PasteDataRecord): void
Adds a data record to this pasteboard, and adds its type to **mimeTypes** in [PasteDataProperty](#pastedataproperty7). The parameters cannot be empty. Otherwise, the operation fails.
-The pasteboard supports a maximum number of 128 data records.
+The pasteboard supports a maximum number of 512 data records.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| record | [PasteDataRecord](#pastedatarecord7) | Yes | Record to add. |
+| record | [PasteDataRecord](#pastedatarecord7) | Yes| Record to add.|
**Example**
- ```js
- var pasteData = pasteboard.createUriData("dataability:///com.example.myapplication1?user.txt");
- var textRecord = pasteboard.createPlainTextRecord("hello");
- var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
- var htmlRecord = pasteboard.createHtmlTextRecord(html);
- pasteData.addRecord(textRecord);
- pasteData.addRecord(htmlRecord);
- ```
+```js
+var pasteData = pasteboard.createUriData("dataability:///com.example.myapplication1/user.txt");
+var textRecord = pasteboard.createPlainTextRecord("hello");
+var html = "\n" + "\n" + "\n" + "\n" + "HTML-PASTEBOARD_HTML\n" + "\n" + "\n" + " HEAD
\n" + " \n" + "\n" + "";
+var htmlRecord = pasteboard.createHtmlTextRecord(html);
+pasteData.addRecord(textRecord);
+pasteData.addRecord(htmlRecord);
+```
### getMimeTypes7+
getMimeTypes(): Array<string>
-Obtains **mimeTypes** in [PasteDataProperty](#pastedataproperty7) from this pasteboard. If the pasteboard is empty, the returned list is also empty.
+Obtains a list of **mimeTypes** objects in [PasteDataProperty](#pastedataproperty7) from this pasteboard. If the pasteboard is empty, the returned list is also empty.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| Array<string> | List of non-duplicate MIME types. |
+| Array<string> | Non-repeating data types of the data records on the pasteboard.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var types = pasteData.getMimeTypes();
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var types = pasteData.getMimeTypes();
+```
### getPrimaryMimeType7+
getPrimaryMimeType(): string
-Obtains the data type of the primary record.
+Obtains the data type of the primary record in this pasteboard.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| string | Data type of the primary record. |
+| string | Data type of the primary record.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var type = pasteData.getPrimaryMimeType();
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var type = pasteData.getPrimaryMimeType();
+```
### getProperty7+
getProperty(): PasteDataProperty
-Obtains the property description object.
+Obtains the property of the pasteboard data.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteDataProperty](#pastedataproperty7) | Property description object. |
+| [PasteDataProperty](#pastedataproperty7) | Property of the pasteboard data.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var property = pasteData.getProperty();
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var property = pasteData.getProperty();
+```
+
+
+### setProperty9+
+
+setProperty(property: PasteDataProperty): void
+
+Sets the property (attributes) for the pasteboard data. Currently, only the **shareOption** attribute is supported.
+
+**System capability**: SystemCapability.MiscServices.Pasteboard
+
+**Parameters**
+
+| Name| Type| Mandatory| Description|
+| -------- | -------- | -------- | -------- |
+| property | [PasteDataProperty](#pastedataproperty7) | Yes| Property of the pasteboard data.|
+
+**Example**
+
+```js
+var pasteData = pasteboard.createHtmlData('application/xml');
+let prop = pasteData.getProperty();
+prop.shareOption = pasteboard.ShareOption.InApp;
+pasteData.setProperty(prop);
+```
### getRecordAt7+
getRecordAt(index: number): PasteDataRecord
-Obtains the record with the specified index.
+Obtains the specified record in the pasteboard.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| index | number | Yes | Index of the specified record. |
+| index | number | Yes| Index of the target record.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| [PasteDataRecord](#pastedatarecord7) | Record with the specified index. |
+| [PasteDataRecord](#pastedatarecord7) | Record with the specified index.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var record = pasteData.getRecordAt(0);
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var record = pasteData.getRecordAt(0);
+```
### getRecordCount7+
getRecordCount(): number
-Obtains the number of data records in this pasteboard.
+Obtains the number of records in the pasteboard.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| number | Number of records. |
+| number | Number of records.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var count = pasteData.getRecordCount();
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var count = pasteData.getRecordCount();
+```
### getTag7+
getTag(): string
-Obtains the user-defined tag content. If the tag content is not set, null is returned.
+Obtains the custom tag from the pasteboard. If no custom tag is set, null is returned.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| string | User-defined tag content if obtained and null if no tag is set. |
+| string | Custom tag. If no custom tag is set, null is returned.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var tag = pasteData.getTag();
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var tag = pasteData.getTag();
+```
### hasMimeType7+
hasMimeType(mimeType: string): boolean
-Checks whether the content of this pasteboard contains the specified data type.
+Checks whether the pasteboard contains data of the specified type.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| mimeType | string | Yes | Type of the data to query. |
+| mimeType | string | Yes| Type of the data to query.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| boolean | Returns **true** if the specified data type exists; returns **false** otherwise. |
+| boolean | Returns **true** if the specified data type exists; returns **false** otherwise.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var hasType = pasteData.hasMimeType(pasteboard.MIMETYPE_TEXT_PLAIN);
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var hasType = pasteData.hasMimeType(pasteboard.MIMETYPE_TEXT_PLAIN);
+```
### removeRecordAt7+
removeRecordAt(index: number): boolean
-Removes the data record with a specified index from this pasteboard.
+Removes the record with the specified index from the pasteboard.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| index | number | Yes | Specified index. |
+| index | number | Yes| Specified index.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| boolean | Returns **true** if the operation is successful; returns **false** otherwise. |
+| boolean | Returns **true** if the operation is successful; returns **false** otherwise.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var isRemove = pasteData.removeRecordAt(0);
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var isRemove = pasteData.removeRecordAt(0);
+```
### replaceRecordAt7+
replaceRecordAt(index: number, record: PasteDataRecord): boolean
-Replaces the data record with a specified index in this pasteboard.
+Replaces the record with the specified index in the pasteboard with a new record.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| index | number | Yes | Specified index. |
-| record | [PasteDataRecord](#pastedatarecord7) | Yes | New record. |
+| index | number | Yes| Specified index.|
+| record | [PasteDataRecord](#pastedatarecord7) | Yes| New record.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| boolean | Returns **true** if the operation is successful; returns **false** otherwise. |
+| boolean | Returns **true** if the operation is successful; returns **false** otherwise.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("hello");
- var record = pasteboard.createUriRecord("dataability:///com.example.myapplication1?user.txt");
- var isReplace = pasteData.replaceRecordAt(0, record);
- ```
-
-
-## pasteboard.getSystemPasteboard
-
-getSystemPasteboard(): SystemPasteboard
-
-Obtains the system pasteboard.
-
-**System capability**: SystemCapability.MiscServices.Pasteboard
-
-**Return value**
-
-| Type | Description |
-| -------- | -------- |
-| [SystemPasteboard](#systempasteboard) | System pasteboard. |
-
-**Example**
-
- ```js
- var systemPasteboard = pasteboard.getSystemPasteboard();
- ```
-
+```js
+var pasteData = pasteboard.createPlainTextData("hello");
+var record = pasteboard.createUriRecord("dataability:///com.example.myapplication1/user.txt");
+var isReplace = pasteData.replaceRecordAt(0, record);
+```
## SystemPasteboard
-Before calling any **SystemPasteboard** method, you must obtain a **SystemPasteboard** object using [getSystemPasteboard](#pasteboardgetsystempasteboard).
+Provides **SystemPasteboard** APIs.
-```
+Before calling any **SystemPasteboard** API, you must obtain a **SystemPasteboard** object using [getSystemPasteboard](#pasteboardgetsystempasteboard).
+
+```js
var systemPasteboard = pasteboard.getSystemPasteboard();
```
### setPasteData
-setPasteData(data:PasteData, callback:AsyncCallback<void>): void
+setPasteData(data: PasteData, callback: AsyncCallback<void>): void
-Writes data to a pasteboard. This API uses an asynchronous callback to return the result.
+Writes a **PasteData** object to the pasteboard. This API uses an asynchronous callback to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| data | [PasteData](#pastedata) | Yes | **PasteData** object. |
-| callback | AsyncCallback<void> | Yes | Callback used to return the data write result. |
+| data | [PasteData](#pastedata) | Yes| **PasteData** object.|
+| callback | AsyncCallback<void> | Yes| Callback used to return the result. If the operation is successful, **err** is **undefined**; otherwise, **err** is an error object.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("content");
- var systemPasteboard = pasteboard.getSystemPasteboard();
- systemPasteboard.setPasteData(pasteData, (error, data) => {
- if (error) {
- console.error('Failed to setPasteData. Cause: ' + error.message);
- return;
- }
- console.info('setPasteData successfully.');
- });
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("content");
+var systemPasteboard = pasteboard.getSystemPasteboard();
+systemPasteboard.setPasteData(pasteData, (err, data) => {
+ if (err) {
+ console.error('Failed to set PasteData. Cause: ' + err.message);
+ return;
+ }
+ console.info('Succeeded in setting PasteData.');
+});
+```
### setPasteData
-setPasteData(data:PasteData): Promise<void>
+setPasteData(data: PasteData): Promise<void>
-Writes data to a pasteboard. This API uses a promise to return the result.
+Writes a **PasteData** object to the pasteboard. This API uses a promise to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Description |
+| Name| Type| Description|
| -------- | -------- | -------- |
-| data | [PasteData](#pastedata) | **PasteData** object. |
+| data | [PasteData](#pastedata) | **PasteData** object.|
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| Promise<void> | Promise used to return the data write result. |
+| Promise<void> | Promise that returns no value.|
**Example**
- ```js
- var pasteData = pasteboard.createPlainTextData("content");
- var systemPasteboard = pasteboard.getSystemPasteboard();
- systemPasteboard.setPasteData(pasteData).then((data) => {
- console.info('setPasteData success.');
- }).catch((error) => {
- console.error('Failed to setPasteData. Cause: ' + error.message);
- });
- ```
+```js
+var pasteData = pasteboard.createPlainTextData("content");
+var systemPasteboard = pasteboard.getSystemPasteboard();
+systemPasteboard.setPasteData(pasteData).then((data) => {
+ console.info('Succeeded in setting PasteData.');
+}).catch((err) => {
+ console.error('Failed to set PasteData. Cause: ' + err.message);
+});
+```
### getPasteData
-getPasteData( callback:AsyncCallback<PasteData>): void
+getPasteData( callback: AsyncCallback<PasteData>): void
-Reads the system pasteboard content. This API uses an asynchronous callback to return the result.
+Obtains a **PasteData** object from the pasteboard. This API uses an asynchronous callback to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| callback | AsyncCallback<[PasteData](#pastedata)> | Yes | Callback used to return the system pasteboard data. |
+| callback | AsyncCallback<[PasteData](#pastedata)> | Yes| Callback used to return the result. If the operation is successful, **err** is **undefined** and **data** is the system pasteboard data. Otherwise, **err** is an error object.|
**Example**
- ```js
- var systemPasteboard = pasteboard.getSystemPasteboard();
- systemPasteboard.getPasteData((error, pasteData) => {
- if (error) {
- console.error('Failed to getPasteData. Cause: ' + error.message);
- return;
- }
- var text = pasteData.getPrimaryText();
- });
- ```
+```js
+var systemPasteboard = pasteboard.getSystemPasteboard();
+systemPasteboard.getPasteData((err, pasteData) => {
+ if (err) {
+ console.error('Failed to get PasteData. Cause: ' + err.message);
+ return;
+ }
+ var text = pasteData.getPrimaryText();
+});
+```
### getPasteData
getPasteData(): Promise<PasteData>
-Reads the system pasteboard content. This API uses a promise to return the result.
+Obtains a **PasteData** object from the pasteboard. This API uses a promise to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| Promise<[PasteData](#pastedata)> | Promise used to return the system pasteboard data. |
+| Promise<[PasteData](#pastedata)> | Promise used to return the system pasteboard data.|
**Example**
- ```js
- var systemPasteboard = pasteboard.getSystemPasteboard();
- systemPasteboard.getPasteData().then((pasteData) => {
- var text = pasteData.getPrimaryText();
- }).catch((error) => {
- console.error('Failed to getPasteData. Cause: ' + error.message);
- })
- ```
+```js
+var systemPasteboard = pasteboard.getSystemPasteboard();
+systemPasteboard.getPasteData().then((pasteData) => {
+ var text = pasteData.getPrimaryText();
+}).catch((err) => {
+ console.error('Failed to get PasteData. Cause: ' + err.message);
+})
+```
### on('update')7+
on(type: 'update', callback: () =>void ): void
-Subscribes to the content change event of the system pasteboard. If the pasteboard content changes, the callback is triggered.
+Subscribes to the content change event of the system pasteboard.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| type | string | Yes | Data type. The value **update** indicates the pasteboard content has changed. |
-| callback | function | Yes | Callback invoked when the pasteboard content changes. |
+| type | string | Yes| Event type. The value **'update'** indicates changes in the pasteboard content.|
+| callback | function | Yes| Callback invoked when the pasteboard content changes.|
**Example**
- ```js
- var systemPasteboard = pasteboard.getSystemPasteboard();
- var listener = () => {
- console.info('The system pasteboard has changed');
- };
- systemPasteboard.on('update', listener);
- ```
+```js
+var systemPasteboard = pasteboard.getSystemPasteboard();
+var listener = () => {
+ console.info('The system pasteboard has changed.');
+};
+systemPasteboard.on('update', listener);
+```
### off('update')7+
@@ -981,120 +1248,120 @@ Unsubscribes from the system pasteboard content change event.
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| type | string | Yes | Data type. The value **update** indicates the pasteboard content has changed. |
-| callback | function | No | Callback invoked when the pasteboard content changes. |
+| type | string | Yes| Event type. The value **'update'** indicates changes in the pasteboard content.|
+| callback | function | No| Callback invoked when the pasteboard content changes.|
**Example**
- ```js
- let listener = () => {
- console.info('The system pasteboard has changed');
- };
- systemPasteboard.off('update', listener);
- ```
+```js
+let listener = () => {
+ console.info('The system pasteboard has changed.');
+};
+systemPasteboard.off('update', listener);
+```
### hasPasteData7+
hasPasteData(callback: AsyncCallback<boolean>): void
-Checks whether the system pasteboard contains content. This API uses an asynchronous callback to return the result.
+Checks whether the system pasteboard contains data. This API uses an asynchronous callback to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| callback | AsyncCallback<boolean> | Yes | Returns **true** if the pasteboard contains content; returns **false** otherwise. |
+| callback | AsyncCallback<boolean> | Yes| Callback used to return the result. Returns **true** if the system pasteboard contains data; returns **false** otherwise.|
**Example**
- ```js
- systemPasteboard.hasPasteData((err, data) => {
- if (err) {
- console.error('failed to hasPasteData because ' + JSON.stringify(err));
- return;
- }
- console.info('success hasPasteData : ' + JSON.stringify(data));
- });
- ```
+```js
+systemPasteboard.hasPasteData((err, data) => {
+ if (err) {
+ console.error('Failed to check the PasteData. Cause: ' + JSON.stringify(err));
+ return;
+ }
+ console.info('Succeeded in checking the PasteData. Data: ' + JSON.stringify(data));
+});
+```
### hasPasteData7+
-hasPasteData(): Promise<boolean>
+hasPasteData(): Promise<boolean>
-Checks whether the system pasteboard contains content. This API uses a promise to return the result.
+Checks whether the system pasteboard contains data. This API uses a promise to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| Promise<boolean> | Returns **true** if the pasteboard contains content; returns **false** otherwise. |
+| Promise<boolean> | Promise used to return the result. Returns **true** if the system pasteboard contains data; returns **false** otherwise.|
**Example**
- ```js
- systemPasteboard.hasPasteData().then((data) => {
- console.info('success hasPasteData : ' + JSON.stringify(data));
- }).catch((error) => {
- console.error('failed to hasPasteData because ' + JSON.stringify(error));
- });
- ```
+```js
+systemPasteboard.hasPasteData().then((data) => {
+ console.info('Succeeded in checking the PasteData. Data: ' + JSON.stringify(data));
+}).catch((err) => {
+ console.error('Failed to check the PasteData. Cause: ' + JSON.stringify(err));
+});
+```
### clear7+
-clear(callback: AsyncCallback<void>): void
+clear(callback: AsyncCallback<void>): void
-Clears the system pasteboard content. This API uses an asynchronous callback to return the result.
+Clears the system pasteboard. This API uses an asynchronous callback to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Parameters**
-| Name | Type | Mandatory | Description |
+| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| callback | AsyncCallback<void> | Yes | Callback used to return the result. |
+| callback | AsyncCallback<void> | Yes| Callback used to return the result. If the operation is successful, **err** is **undefined**; otherwise, **err** is an error object.|
**Example**
- ```js
- systemPasteboard.clear((err, data) => {
- if (err) {
- console.error('failed to clear because ' + JSON.stringify(err));
- return;
- }
- console.info('success clear');
- });
- ```
+```js
+systemPasteboard.clear((err, data) => {
+ if (err) {
+ console.error('Failed to clear the PasteData. Cause: ' + JSON.stringify(err));
+ return;
+ }
+ console.info('Succeeded in clearing the PasteData.');
+});
+```
### clear7+
-clear(): Promise<void>
+clear(): Promise<void>
-Clears the system pasteboard content. This API uses a promise to return the result.
+Clears the system pasteboard. This API uses a promise to return the result.
**System capability**: SystemCapability.MiscServices.Pasteboard
**Return value**
-| Type | Description |
+| Type| Description|
| -------- | -------- |
-| Promise<void> | Promise used to return the result. |
+| Promise<void> | Promise that returns no value.|
**Example**
- ```js
- systemPasteboard.clear().then((data) => {
- console.info('success clear');
- }).catch((error) => {
- console.error('failed to clear because ' + JSON.stringify(error));
- });
- ```
+```js
+systemPasteboard.clear().then((data) => {
+ console.info('Succeeded in clearing the PasteData.');
+}).catch((err) => {
+ console.error('Failed to clear the PasteData. Cause: ' + JSON.stringify(err));
+});
+```
diff --git a/en/application-dev/reference/arkui-js/figures/EventParameters.gif b/en/application-dev/reference/arkui-js/figures/EventParameters.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3012b0fe3edabe15d0b48373fb738b5c4879842d
Binary files /dev/null and b/en/application-dev/reference/arkui-js/figures/EventParameters.gif differ
diff --git a/en/application-dev/reference/arkui-js/js-components-custom-event-parameter.md b/en/application-dev/reference/arkui-js/js-components-custom-event-parameter.md
index b1b63b3e16d1e973c7a0854c29d84853f20806ea..55131eddc7e7613ae7fa58086ca5c59cc9ee35c9 100644
--- a/en/application-dev/reference/arkui-js/js-components-custom-event-parameter.md
+++ b/en/application-dev/reference/arkui-js/js-components-custom-event-parameter.md
@@ -1,40 +1,46 @@
-# Event Parameter
+# Event Parameter
A child component can also pass parameters to an upper-layer component through the bound event. The following example describes how to pass parameters through the custom event:
-```
+
+```html
- Click here to view the hidden text.
- hello world
+ Click to View Hidden Text
+ hello world
```
-```
+
+```js
// comp.js
export default {
childClicked () {
- this.$emit('eventType1', {text: 'Receive the parameters from the child component.'});
+ this.$emit('eventType1', {text: 'Received parameters from the child component.'});
this.showObj = !this.showObj;
},
}
```
-In the following example, the child component passes the **text** parameter to the parent component, and the parent component obtains the parameter through **e.detail**:
-```
+In the following example, the child component passes the **text** parameter to the parent component, and the parent component obtains the parameter through **e.detail**:
+
+
+```html
+
Parent component: {{text}}
```
-```
+
+```js
// xxx.js
export default {
data: {
- text: 'Start',
+ text: 'Start'
},
textClicked (e) {
this.text = e.detail.text;
@@ -42,3 +48,4 @@ export default {
}
```
+![EventParameters](figures/EventParameters.gif)
diff --git a/en/application-dev/reference/arkui-ts/ts-basic-components-checkboxgroup.md b/en/application-dev/reference/arkui-ts/ts-basic-components-checkboxgroup.md
index 925e02a88bce8e5a9fb13a752e178e422afad645..deb88ab76fc047354169bbaadf95b225775335f0 100644
--- a/en/application-dev/reference/arkui-ts/ts-basic-components-checkboxgroup.md
+++ b/en/application-dev/reference/arkui-ts/ts-basic-components-checkboxgroup.md
@@ -8,7 +8,7 @@ The **\** component is used to select or deselect all check boxes
## Child Components
-None
+Not supported
## APIs
@@ -18,8 +18,6 @@ Creates a check box group so that you can select or deselect all check boxes in
**Parameters**
-
-
| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| group | string | No| Group name.|
diff --git a/en/application-dev/reference/arkui-ts/ts-basic-components-image.md b/en/application-dev/reference/arkui-ts/ts-basic-components-image.md
index fe13a114dcd9c8407c74c6d6193d232998af4034..8a755a02ff75cf3bcbf44a68cfa64e4898b99c33 100644
--- a/en/application-dev/reference/arkui-ts/ts-basic-components-image.md
+++ b/en/application-dev/reference/arkui-ts/ts-basic-components-image.md
@@ -27,7 +27,7 @@ Obtains an image from the specified source for subsequent rendering and display.
| Name| Type | Mandatory| Description |
| ------ | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
-| src | string\| [PixelMap](../apis/js-apis-image.md#pixelmap7) \| [Resource](ts-types.md#resource) | Yes | Image source. Both local and online images are supported.
When using an image referenced using a relative path, for example, `Image("common/test.jpg")`, the **\** component cannot be called across bundles or modules. Therefore, you are advised to use `$r` to reference image resources that need to be used globally.
- The following image formats are supported: PNG, JPG, BMP, SVG, GIF.
\- Base64 strings are supported. \ The value format is `data:image/[png\|jpeg\|bmp\|webp];base64,[base64 data]`, where `[base64 data]` is a Base64 string.
\- The value can also be a path starting with `dataability://`, which is used to access the image path provided by a Data ability.|
+| src | string\| [PixelMap](../apis/js-apis-image.md#pixelmap7) \| [Resource](ts-types.md#resource) | Yes | Image source. Both local and online images are supported.
When using an image referenced using a relative path, for example, `Image("common/test.jpg")`, the **\** component cannot be called across bundles or modules. Therefore, you are advised to use `$r` to reference image resources that need to be used globally.
- The following image formats are supported: PNG, JPG, BMP, SVG, GIF.
\- Base64 strings are supported. The value format is `data:image/[png\|jpeg\|bmp\|webp];base64,[base64 data]`, where `[base64 data]` is a Base64 string.
\- The value can also be a path starting with `dataability://`, which is used to access the image path provided by a Data ability. |
## Attributes
diff --git a/en/application-dev/reference/arkui-ts/ts-basic-components-radio.md b/en/application-dev/reference/arkui-ts/ts-basic-components-radio.md
index a9e80d2923b42027be871830988f5d380f77808f..f000af680f63404ce37e365b777fbe9e03b96b5d 100644
--- a/en/application-dev/reference/arkui-ts/ts-basic-components-radio.md
+++ b/en/application-dev/reference/arkui-ts/ts-basic-components-radio.md
@@ -9,7 +9,7 @@ The **\** component allows users to select from a set of mutually exclusi
## Child Components
-None
+Not supported
## APIs
diff --git a/en/application-dev/reference/arkui-ts/ts-basic-components-textclock.md b/en/application-dev/reference/arkui-ts/ts-basic-components-textclock.md
index eee8ee70f12c7bf07bb30b5741e659d827b0eb0e..ffb479fd90217da2d88543706e2913f5cf04850f 100644
--- a/en/application-dev/reference/arkui-ts/ts-basic-components-textclock.md
+++ b/en/application-dev/reference/arkui-ts/ts-basic-components-textclock.md
@@ -19,7 +19,7 @@ TextClock(options?: { timeZoneOffset?: number, controller?: TextClockController
| Name | Type | Mandatory | Description |
| -------------- | -------- | ------ | --------------------------------------------------------------------------- |
| timeZoneOffset | number | No | Time zone offset.
The value range is [-14, 12], indicating UTC+12 to UTC-12. A negative value indicates Eastern Standard Time, and a positive value indicates Western Standard Time. For example, **-8** indicates UTC+8.
For countries or regions crossing the International Date Line, use -13 (UTC+13) and -14 (UTC+14) to ensure consistent time within the entire country or region. If the set value is not within the valid range, the time zone offset of the current system will be used.
Default value: time zone offset of the current system|
-| controller | [TextClockController](#textclockcontroller) | No | Binds a controller to control the status of the **** component.|
+| controller | [TextClockController](#textclockcontroller) | No | Controller to control the status of the **** component. |
## Attributes
@@ -31,7 +31,7 @@ In addition to the [universal attributes](ts-universal-attributes-size.md), the
## Events
-In addition to the universal events (ts-universal-events-click.md), the following events are supported.
+In addition to the [universal events](ts-universal-events-click.md), the following events are supported.
| Name | Description |
| -------------------------------------------- | ------------------------------------------------------------ |
diff --git a/en/application-dev/reference/arkui-ts/ts-container-list.md b/en/application-dev/reference/arkui-ts/ts-container-list.md
index beed8908018fafdcdbc03ec99e8ec54fedad00dc..6a7cb32d7647f0293a0530829cfe071bd089b474 100644
--- a/en/application-dev/reference/arkui-ts/ts-container-list.md
+++ b/en/application-dev/reference/arkui-ts/ts-container-list.md
@@ -10,7 +10,7 @@ The **\** component provides a list container that presents a series of li
## Child Components
-This component supports the [\(ts-container-listitem.md) and [\](ts-container-listitemgroup.md) child components.
+This component supports the [\](ts-container-listitem.md) and [\](ts-container-listitemgroup.md) child components.
## APIs
diff --git a/en/application-dev/reference/arkui-ts/ts-container-row.md b/en/application-dev/reference/arkui-ts/ts-container-row.md
index cdd62b8b32f2928375743c23c930e7fe2abcfbc8..d8b0cf68c9a9914d44f121f6d9ac0bb3ffe947c9 100644
--- a/en/application-dev/reference/arkui-ts/ts-container-row.md
+++ b/en/application-dev/reference/arkui-ts/ts-container-row.md
@@ -20,7 +20,7 @@ Row(value?:{space?: number | string })
| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
-| space | string \| number | No| Space between two adjacent child components in the horizontal layout.
Default value: **0**|
+| space | string \| number | No| Space between two adjacent child components in the horizontal layout.
Default value: **0**, in vp |
## Attributes
@@ -28,7 +28,7 @@ Row(value?:{space?: number | string })
| Name| Type| Description|
| -------- | -------- | -------- |
| alignItems | [VerticalAlign](ts-appendix-enums.md#verticalalign) | Alignment mode of child components in the vertical direction.
Default value: **VerticalAlign.Center**|
-| justifyContent8+ | [FlexAlign](ts-appendix-enums.md#flexalign) | Alignment mode of the child components in the horizontal direction.
FlexAlign.Start |
+| justifyContent8+ | [FlexAlign](ts-appendix-enums.md#flexalign) | Alignment mode of the child components in the horizontal direction.
Default value: **FlexAlign.Start** |
## Example
diff --git a/en/application-dev/reference/arkui-ts/ts-container-rowsplit.md b/en/application-dev/reference/arkui-ts/ts-container-rowsplit.md
index a9d5a32e480f4d0ad3f4536dc806edd593bda36a..4858f2c37345ea8d074fdd68dae68860a57e20ee 100644
--- a/en/application-dev/reference/arkui-ts/ts-container-rowsplit.md
+++ b/en/application-dev/reference/arkui-ts/ts-container-rowsplit.md
@@ -1,15 +1,10 @@
# RowSplit
-> **NOTE**
-> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
-
-
The **\** lays out child components horizontally and inserts a vertical divider between every two child components.
-
-## Required Permissions
-
-None
+> **NOTE**
+>
+> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
## Child Components
@@ -24,12 +19,13 @@ RowSplit()
## Attributes
-| Name| Type| Description|
+| Name| Type| Description|
| -------- | -------- | -------- |
-| resizeable | boolean | Whether the divider can be dragged. The default value is **false**.|
+| resizeable | boolean | Whether the divider can be dragged. The default value is **false**.|
> **NOTE**
-> Similar to **\**, the divider of **\** can be dragged to a position that just fully holds a component.
+>
+> Similar to **\**, the divider of **\** can be dragged to a position that just fully holds a component.
## Example
diff --git a/en/application-dev/reference/arkui-ts/ts-container-tabcontent.md b/en/application-dev/reference/arkui-ts/ts-container-tabcontent.md
index 4119473322b8ea13d46ff31a7d8fe7eb4c95ed14..3eaa86b6d332b7ee7699efc3243da173a01b260e 100644
--- a/en/application-dev/reference/arkui-ts/ts-container-tabcontent.md
+++ b/en/application-dev/reference/arkui-ts/ts-container-tabcontent.md
@@ -7,7 +7,7 @@ The **\** component is used only in the **\** component. It co
> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
-## Child Component
+## Child Components
This component supports only one child component.
@@ -23,7 +23,7 @@ In addition to the [universal attributes](ts-universal-attributes-size.md), the
| Name| Type| Description|
| -------- | -------- | -------- |
-| tabBar | string \| Resource \| {
icon?: string \| Resource,
text?: string \| Resource
}
\| [CustomBuilder](ts-types.md)8+ | Content displayed on the tab bar.
**CustomBuilder**: builder, to which components can be passed (applicable to API version 8 and later versions).
> **NOTE**
If an icon uses an SVG image, the width and height attributes of the SVG image must be deleted. Otherwise, the icon size will be determined by the width and height attributes of the SVG image.|
+| tabBar | string \| Resource \| {
icon?: string \| Resource,
text?: string \| Resource
}
\| [CustomBuilder](ts-types.md)8+ | Content displayed on the tab bar.
**CustomBuilder**: builder, to which components can be passed (applicable to API version 8 and later versions).
**NOTE**
If an icon uses an SVG image, the width and height attributes of the SVG image must be deleted. Otherwise, the icon size will be determined by the width and height attributes of the SVG image. |
> **NOTE**
> - The **\** component does not support setting of the common width attribute. By default, its width is the same as that of the parent **\** component.
diff --git a/en/application-dev/reference/arkui-ts/ts-container-tabs.md b/en/application-dev/reference/arkui-ts/ts-container-tabs.md
index cf2877be17fa2cf33cb609c061d598a20ac12738..82503cc45bae76b09dd443e1c935ebd877528303 100644
--- a/en/application-dev/reference/arkui-ts/ts-container-tabs.md
+++ b/en/application-dev/reference/arkui-ts/ts-container-tabs.md
@@ -2,7 +2,7 @@
The **\** component is a container component that allows users to switch between content views through tabs. Each tab page corresponds to a content view.
-> **NOTE**
+> **NOTE**
>
> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
@@ -54,7 +54,7 @@ In addition to the [universal attributes](ts-universal-attributes-size.md), the
## Events
-In addition to the universal events (ts-universal-events-click.md), the following events are supported.
+In addition to the [universal events](ts-universal-events-click.md), the following events are supported.
| Name| Description|
| -------- | -------- |
diff --git a/en/application-dev/reference/arkui-ts/ts-drawing-components-line.md b/en/application-dev/reference/arkui-ts/ts-drawing-components-line.md
index 9963f4e41348f73d784b2d67aae0f7d2ed375252..a4dad2bb721a0e4db791ae84bed8a660d717b04b 100644
--- a/en/application-dev/reference/arkui-ts/ts-drawing-components-line.md
+++ b/en/application-dev/reference/arkui-ts/ts-drawing-components-line.md
@@ -4,7 +4,8 @@
The **\** component is used to draw a straight line.
> **NOTE**
-> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
+>
+> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
## Required Permissions
diff --git a/en/application-dev/reference/arkui-ts/ts-drawing-components-polygon.md b/en/application-dev/reference/arkui-ts/ts-drawing-components-polygon.md
index df8578babc490378d574449deccb716d05ec0e45..15b4da37a04970d3cbfcdce429ede77ec46291b8 100644
--- a/en/application-dev/reference/arkui-ts/ts-drawing-components-polygon.md
+++ b/en/application-dev/reference/arkui-ts/ts-drawing-components-polygon.md
@@ -16,18 +16,18 @@ Not supported
Polygon(value?: {width?: string | number, height?: string | number})
-- Parameters
- | Name| Type| Mandatory| Default Value| Description|
- | -------- | -------- | -------- | -------- | -------- |
- | width | string \| number | No| 0 | Width.|
- | height | string \| number | No| 0 | Height.|
+**Parameters**
+| Name| Type| Mandatory| Default Value| Description|
+| -------- | -------- | -------- | -------- | -------- |
+| width | string \| number | No| 0 | Width.|
+| height | string \| number | No| 0 | Height.|
## Attributes
In addition to the [universal attributes](ts-universal-attributes-size.md), the following attributes are supported.
-| Name| Type| Default Value| Mandatory| Description|
+| Name| Type| Default Value| Mandatory| Description|
| -------- | -------- | -------- | -------- | -------- |
| points | Array<Point> | [] | No| Vertex coordinates of the polygon.|
| fill | [ResourceColor](ts-types.md#resourcecolor) | Color.Black | No| Color of the fill area.|
diff --git a/en/application-dev/reference/arkui-ts/ts-drawing-components-polyline.md b/en/application-dev/reference/arkui-ts/ts-drawing-components-polyline.md
index 90b1d2a7aa350976b8ce1a6b9bce84ea079fe07f..8475647b5707a180dba18377ee45ae41796b9a69 100644
--- a/en/application-dev/reference/arkui-ts/ts-drawing-components-polyline.md
+++ b/en/application-dev/reference/arkui-ts/ts-drawing-components-polyline.md
@@ -16,20 +16,20 @@ Not supported
Polyline(value?: {width?: string | number, height?: string | number})
-- Parameters
- | Name| Type| Mandatory| Default Value| Description|
- | -------- | -------- | -------- | -------- | -------- |
- | width | string \| number | No| 0 | Width.|
- | height | string \| number | No| 0 | Height.|
+**Parameters**
+| Name| Type| Mandatory| Default Value| Description|
+| -------- | -------- | -------- | -------- | -------- |
+| width | string \| number | No| 0 | Width.|
+| height | string \| number | No| 0 | Height.|
## Attributes
In addition to the [universal attributes](ts-universal-attributes-size.md), the following attributes are supported.
-| Name| Type| Default Value| Mandatory| Description|
+| Name| Type| Default Value| Mandatory| Description|
| -------- | -------- | -------- | -------- | -------- |
-| points | Array<Point> | [] | No| List of coordinates that the polyline passes through.|
+| points | Array<Point> | [] | No| List of coordinates that the polyline passes through.|
| fill | [ResourceColor](ts-types.md#resourcecolor) | Color.Black | No| Color of the fill area.|
| fillOpacity | number \| string \| [Resource](ts-types.md#resource)| 1 | No| Opacity of the fill area.|
| stroke | [ResourceColor](ts-types.md#resourcecolor) | Color.Black | No| Stroke color.|
diff --git a/en/application-dev/reference/arkui-ts/ts-drawing-components-rect.md b/en/application-dev/reference/arkui-ts/ts-drawing-components-rect.md
index 9d0dd2d44a9563306e11895e31e7a295093eb407..bb9a06be8dfc2d71663807a7fc9f9cb2cf3529bf 100644
--- a/en/application-dev/reference/arkui-ts/ts-drawing-components-rect.md
+++ b/en/application-dev/reference/arkui-ts/ts-drawing-components-rect.md
@@ -17,24 +17,25 @@ Not supported
Rect(value?: {width?: string | number,height?: string | number,radius?: string | number | Array<string | number>} |
{width?: string | number,height?: string | number,radiusWidth?: string | number,radiusHeight?: string | number})
-- Parameters
- | Name| Type| Mandatory| Default Value| Description|
- | -------- | -------- | -------- | -------- | -------- |
- | width | string \| number | No| 0 | Width.|
- | height | string \| number | No| 0 | Height.|
- | radius | string \| number \| Array<string \| number> | No| 0 | Radius of the rounded corner. You can set separate radiuses for four rounded corners.|
- | radiusWidth | string \| number | No| 0 | Width of the rounded corner.|
- | radiusHeight | string \| number | No| 0 | Height of the rounded corner.|
+**Parameters**
+
+| Name| Type| Mandatory| Default Value| Description|
+| -------- | -------- | -------- | -------- | -------- |
+| width | string \| number | No| 0 | Width.|
+| height | string \| number | No| 0 | Height.|
+| radius | string \| number \| Array<string \| number> | No| 0 | Radius of the rounded corner. You can set separate radiuses for four rounded corners.|
+| radiusWidth | string \| number | No| 0 | Width of the rounded corner.|
+| radiusHeight | string \| number | No| 0 | Height of the rounded corner.|
## Attributes
In addition to the [universal attributes](ts-universal-attributes-size.md), the following attributes are supported.
-| Name| Type| Default Value| Mandatory| Description|
+| Name| Type| Default Value| Mandatory| Description|
| -------- | -------- | -------- | -------- | -------- |
-| radiusWidth | string \| number | 0 | No| Width of the rounded corner. The width and height are the same when only the width is set.|
-| radiusHeight | string \| number | 0 | No| Height of the rounded corner. The width and height are the same only when the height is set.|
+| radiusWidth | string \| number | 0 | No| Width of the rounded corner. The width and height are the same when only the width is set.|
+| radiusHeight | string \| number | 0 | No| Height of the rounded corner. The width and height are the same only when the height is set.|
| radius | string \| number \| Array<string \| number> | 0 | No| Radius of the rounded corner. You can set separate radiuses for four rounded corners.|
| fill | [ResourceColor](ts-types.md#resourcecolor) | Color.Black | No| Color of the fill area.|
| fillOpacity | number \| string \| [Resource](ts-types.md#resource)| 1 | No| Opacity of the fill area.|
diff --git a/en/application-dev/reference/arkui-ts/ts-drawing-components-shape.md b/en/application-dev/reference/arkui-ts/ts-drawing-components-shape.md
index ce61ce33769363c5b331ea3f476a1bd7fa4c9d68..1341cc20d871001547be2084eb35a3feb4d026a9 100644
--- a/en/application-dev/reference/arkui-ts/ts-drawing-components-shape.md
+++ b/en/application-dev/reference/arkui-ts/ts-drawing-components-shape.md
@@ -21,10 +21,10 @@ This component can contain child components.
Shape(value?: PixelMap)
-- Parameters
- | Name| Type| Mandatory| Default Value| Description|
- | -------- | -------- | -------- | -------- | -------- |
- | value | PixelMap | No| - | Shape to draw. You can draw a shape in the specified **PixelMap** object. If no object is specified, the shape is drawn in the current drawing target.|
+**Parameters**
+| Name| Type| Mandatory| Default Value| Description|
+| -------- | -------- | -------- | -------- | -------- |
+| value | PixelMap | No| - | Shape to draw. You can draw a shape in the specified **PixelMap** object. If no object is specified, the shape is drawn in the current drawing target.|
## Attributes
diff --git a/en/application-dev/reference/arkui-ts/ts-media-components-video.md b/en/application-dev/reference/arkui-ts/ts-media-components-video.md
index 2fe2e87870ad855044790259a8709986120d3244..158a8f0395f635c7417de49579d1f9bdfa61ab8e 100644
--- a/en/application-dev/reference/arkui-ts/ts-media-components-video.md
+++ b/en/application-dev/reference/arkui-ts/ts-media-components-video.md
@@ -53,7 +53,7 @@ In addition to the [universal attributes](ts-universal-attributes-size.md), the
## Events
-In addition to the universal events (ts-universal-events-click.md), the following events are supported.
+In addition to the [universal events](ts-universal-events-click.md), the following events are supported.
| Name | Description |
| ------------------------------------------------------------ | ------------------------------------------------------------ |
@@ -70,7 +70,7 @@ In addition to the universal events (ts-universal-events-click.md), the followin
## VideoController
-A **VideoController** object can control one or more videos.
+Defines a **VideoController** object to control one or more videos.
### Objects to Import
diff --git a/en/application-dev/reference/arkui-ts/ts-methods-datepicker-dialog.md b/en/application-dev/reference/arkui-ts/ts-methods-datepicker-dialog.md
index 5754a1b194653e4df5afde37bf50b815e14ce2e2..e8488281d24a6b93a24e2fbfceafccba5a657e4e 100644
--- a/en/application-dev/reference/arkui-ts/ts-methods-datepicker-dialog.md
+++ b/en/application-dev/reference/arkui-ts/ts-methods-datepicker-dialog.md
@@ -6,11 +6,6 @@ A date picker dialog box is a dialog box that allows users to select a date from
>
> The APIs of this module are supported since API version 9. Updates will be marked with a superscript to indicate their earliest API version.
-
-## Required Permissions
-
-None
-
## DatePickerDialog.show
show(options?: DatePickerDialogOptions)
diff --git a/en/application-dev/reference/arkui-ts/ts-methods-menu.md b/en/application-dev/reference/arkui-ts/ts-methods-menu.md
index b019c06841a6e94017a9b167b438d5ff90411354..4400e9cbf87afc5854228a1b25a6d74fcf44fd8f 100644
--- a/en/application-dev/reference/arkui-ts/ts-methods-menu.md
+++ b/en/application-dev/reference/arkui-ts/ts-methods-menu.md
@@ -1,21 +1,16 @@
# Menu
-The menu bound to a component through [bindContextMenu](./ts-universal-attributes-menu.md#atrributes) on a page can be closed as needed.
+The menu bound to a component through [bindContextMenu](./ts-universal-attributes-menu.md#attributes) on a page can be closed as needed.
> **NOTE**
>
> The APIs of this module are supported since API version 8. Updates will be marked with a superscript to indicate their earliest API version.
-## Required Permissions
-
-None
-
-
## ContextMenu.close
|Name|Description|
|----|---|
-| close(): void | Closes the menu bound to this component through [bindContextMenu](./ts-universal-attributes-menu.md#atrributes) on a page.|
+| close(): void | Closes the menu bound to this component through [bindContextMenu](./ts-universal-attributes-menu.md#attributes) on a page. |
## Example
diff --git a/en/application-dev/reference/arkui-ts/ts-methods-textpicker-dialog.md b/en/application-dev/reference/arkui-ts/ts-methods-textpicker-dialog.md
index f575385cdac4842a96f03b6516ec40f6bb4c8699..87d6cdb9909b8fb118cebcdfe923bfaffc4544c4 100644
--- a/en/application-dev/reference/arkui-ts/ts-methods-textpicker-dialog.md
+++ b/en/application-dev/reference/arkui-ts/ts-methods-textpicker-dialog.md
@@ -6,11 +6,6 @@ A text picker dialog box is a dialog box that allows users to select text from t
>
> The APIs of this module are supported since API version 8. Updates will be marked with a superscript to indicate their earliest API version.
-
-## Required Permissions
-
-None
-
## TextPickerDialog.show
show(options?: TextPickerDialogOptions)
diff --git a/en/application-dev/reference/arkui-ts/ts-universal-attributes-background.md b/en/application-dev/reference/arkui-ts/ts-universal-attributes-background.md
index f6a533065bdf4cb67d2dd683989b87c78af56eda..25737f363751988499f8bc93232b6d4733470b54 100644
--- a/en/application-dev/reference/arkui-ts/ts-universal-attributes-background.md
+++ b/en/application-dev/reference/arkui-ts/ts-universal-attributes-background.md
@@ -10,10 +10,10 @@ You can set the background of a component.
| Name| Type| Description|
| -------- | -------- | -------- |
-| backgroundColor | [ResourceColor](ts-types.md#resourcecolor) | The table below describes the attributes used to set the background color of a component.|
-| backgroundImage | src: [ResourceStr](ts-types.md#resourcestr),
repeat?: [ImageRepeat](ts-appendix-enums.md#imagerepeat) | **src**: image address, which can be the address of an Internet or a local image. (SVG images are not supported.)
**repeat**: whether the background image is repeatedly used. By default, the background image is not repeatedly used.|
+| backgroundColor | [ResourceColor](ts-types.md#resourcecolor) | Background color of the component. |
+| backgroundImage | src: [ResourceStr](ts-types.md#resourcestr),
repeat?: [ImageRepeat](ts-appendix-enums.md#imagerepeat) | Background image of the component.
**src**: image address, which can be the address of an Internet or a local image. (SVG images are not supported.)
**repeat**: whether the background image is repeatedly used. By default, the background image is not repeatedly used. |
| backgroundImageSize | {
width?: [Length](ts-types.md#length),
height?: [Length](ts-types.md#length)
} \| [ImageSize](ts-appendix-enums.md#imagesize) | Width and height of the background image. If the input is a **{width: Length, height: Length}** object and only one attribute is set, the other attribute is the set value multiplied by the original aspect ratio of the image. By default, the original image aspect ratio remains unchanged.
Default value: **ImageSize.Auto**|
-| backgroundImagePosition | [Position](ts-types.md#position8) \| [Alignment](ts-appendix-enums.md#alignment) | Position of the background image in the component.
Default value:
{
x: 0,
y: 0
} |
+| backgroundImagePosition | [Position](ts-types.md#position8) \| [Alignment](ts-appendix-enums.md#alignment) | Position of the background image in the component.
Default value:
**{
x: 0,
y: 0
}** |
## Example
diff --git a/en/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md b/en/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md
index 7f9b88479d562dad8a2644f1bd4c1be9176e02b7..0b055bbfa0c84cf592d13c4fe26a04ab400b3a5a 100644
--- a/en/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md
+++ b/en/application-dev/reference/arkui-ts/ts-universal-attributes-backgroundBlurStyle.md
@@ -14,11 +14,11 @@ You can apply background blur effects to a component.
## BlurStyle
- | Name | Description |
- | ------- | ---------- |
- | Thin | Thin material. |
- | Regular | Regular material. |
- | Thick | Thick material. |
+| Name | Description |
+| ------- | ---------- |
+| Thin | Thin material. |
+| Regular | Regular material. |
+| Thick | Thick material. |
## Example
diff --git a/en/application-dev/reference/arkui-ts/ts-universal-attributes-image-effect.md b/en/application-dev/reference/arkui-ts/ts-universal-attributes-image-effect.md
index 9396d3f0fc3cf34b1eff351edbd3f1af19cf26da..c02876ce0f77ca67db58378aa68dc044846dbc75 100644
--- a/en/application-dev/reference/arkui-ts/ts-universal-attributes-image-effect.md
+++ b/en/application-dev/reference/arkui-ts/ts-universal-attributes-image-effect.md
@@ -17,8 +17,8 @@ None
| Name | Type | Default Value| Description |
| ----------------------------- | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
-| blur | number | - | Blur effect of the current component' content. The input parameter is the blur radius. The larger the radius is, the more blurred the content is. If the value is **0**, the content is not blurred.|
-| backdropBlur | number | - | Blur effect of the current component' background. The input parameter is the blur radius. The larger the radius is, the more blurred the background is. If the value is **0**, the background is not blurred.|
+| blur | number | - | Adds the content blur effect to the current component. The input parameter is the blur radius. The larger the radius is, the more blurred the content is. If the value is **0**, the content is not blurred. |
+| backdropBlur | number | - | Adds the background blur effect to the current component. The input parameter is the blur radius. The larger the radius is, the more blurred the background is. If the value is **0**, the background is not blurred. |
| shadow | {
radius: number \| [Resource](ts-types.md#resource),
color?: Color \| string \| Resource,
offsetX?: number \| Resource,
offsetY?: number \| Resource
} | - | Adds the shadow effect to the current component. The input parameters are the fuzzy radius (mandatory), shadow color (optional; gray by default), x-axis offset (optional; 0 by default), and y-axis offset (optional; 0 by default). The offset unit is px.|
| grayscale | number | 0.0 | Converts the input image to grayscale. The value indicates the grayscale conversion ratio. If the input value is **1.0**, the image is converted into a grayscale image. If the input value is **0.0**, the image does not change. If the input value is between **0.0** and **1.0**, the effect changes in linear mode. The unit is percentage.|
| brightness | number | 1.0 | Adds a brightness to the current component. The input parameter is a brightness ratio. The value **1** indicates no effects. The value **0** indicates the complete darkness. If the value is less than **1**, the brightness decreases. If the value is greater than **1**, the brightness increases. A larger value indicates a higher brightness.|
diff --git a/en/application-dev/reference/arkui-ts/ts-universal-attributes-location.md b/en/application-dev/reference/arkui-ts/ts-universal-attributes-location.md
index 69037d82bd8efc5e3028823381c6a8d9406fe329..3cab264048f797063baf0d40f5b489807033967a 100644
--- a/en/application-dev/reference/arkui-ts/ts-universal-attributes-location.md
+++ b/en/application-dev/reference/arkui-ts/ts-universal-attributes-location.md
@@ -4,7 +4,7 @@ The location attribute sets the alignment mode, layout direction, and position o
> **NOTE**
>
-> This event is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
+> The APIs of this module are supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
## Attributes
@@ -15,8 +15,8 @@ The location attribute sets the alignment mode, layout direction, and position o
| align | [Alignment](ts-appendix-enums.md#alignment) | Alignment of the component content. This attribute is valid only when the values of **width** and **height** are greater than the size of the component content.
Default value: **Alignment.Center**|
| direction | [Direction](ts-appendix-enums.md#direction) | Horizontal layout of the component.
Default value: **Direction.Auto**|
| position | [Position](ts-types.md#position8) | Offset of the component anchor point relative to the top start edge of the parent component. The offset is expressed using absolute values. When laying out components, this attribute does not affect the layout of the parent component. It only adjusts the component position during drawing.|
-| markAnchor | [Position](ts-types.md#position8) | Anchor point of the component for positioning. The top start edge of the component is used as the reference point for offset.
Default value:
{
x: 0,
y: 1
} |
-| offset | [Position](ts-types.md#position8) | Coordinate offset of the relative layout. This attribute does not affect the layout of the parent component. It only adjusts the component position during drawing.
Default value:
{
x: 0,
y: 1
} |
+| markAnchor | [Position](ts-types.md#position8) | Anchor point of the component for positioning. The top start edge of the component is used as the reference point for offset.
Default value:
**{
x: 0,
y: 1**
} |
+| offset | [Position](ts-types.md#position8) | Coordinate offset of the relative layout. This attribute does not affect the layout of the parent component. It only adjusts the component position during drawing.
Default value:
**{
x: 0,
y: 1
}** |
| alignRules9+ | {
left?: { anchor: string, align: [HorizontalAlign](ts-appendix-enums.md#horizontalalign) };
right?: { anchor: string, align: [HorizontalAlign](ts-appendix-enums.md#horizontalalign) };
middle?: { anchor: string, align: [HorizontalAlign](ts-appendix-enums.md#horizontalalign) };
top?: { anchor: string, align: [VerticalAlign](ts-appendix-enums.md#verticalalign) };
bottom?: { anchor: string, align: [VerticalAlign](ts-appendix-enums.md#verticalalign) };
center?: { anchor: string, align: [VerticalAlign](ts-appendix-enums.md#verticalalign) }
} | Alignment rules relative to the container.
- **left**: left-aligned.
- **right**: right-aligned.
- **middle**: center-aligned.
- **top**: top-aligned.
- **bottom**: bottom-aligned.
- **center**: center-aligned.
**NOTE**
- **anchor**: ID of the component that functions as the anchor point.
- **align**: alignment mode relative to the anchor component.|
diff --git a/en/application-dev/reference/arkui-ts/ts-universal-attributes-text-style.md b/en/application-dev/reference/arkui-ts/ts-universal-attributes-text-style.md
index 446cc542dcd6d1e9110c3975e8b1d16fe5ceeb02..f7937b97bffbb5ab4f596940910a22e9922b4040 100644
--- a/en/application-dev/reference/arkui-ts/ts-universal-attributes-text-style.md
+++ b/en/application-dev/reference/arkui-ts/ts-universal-attributes-text-style.md
@@ -16,7 +16,7 @@ The text style attributes are used to set the style for text in a component.
| fontColor | [ResourceColor](ts-types.md#resourcecolor) | Font color. |
| fontSize | Length \| [Resource](ts-types.md#resource) | Font size. If the value is of the number type, the unit fp is used. |
| fontStyle | [FontStyle](ts-appendix-enums.md#fontstyle) | Font style.
Default value: **FontStyle.Normal** |
-| fontWeight | number \| [FontWeight](ts-appendix-enums.md#fontweight) \| string | Font weight. For the number type, the value ranges from 100 to 900, at an interval of 100. The default value is **400**. A larger value indicates a larger font weight. The string type supports only the string of the number type, for example, 400, "bold", "bolder", "lighter", "regular", and "medium", which correspond to the enumerated values in FontWeight.
Default value: **FontWeight.Normal** |
+| fontWeight | number \| [FontWeight](ts-appendix-enums.md#fontweight) \| string | Font weight. For the number type, the value ranges from 100 to 900, at an interval of 100. The default value is **400**. A larger value indicates a larger font weight. The string type supports only the string of the number type, for example, **400**, **"bold"**, **"bolder"**, **"lighter"**, **"regular"**, and **"medium"**, which correspond to the enumerated values in **FontWeight**.
Default value: **FontWeight.Normal** |
| fontFamily | string \| [Resource](ts-types.md#resource) | Font family. Use commas (,) to separate multiple fonts, for example, **'Arial, sans-serif'**. The priority of the fonts is the sequence in which they are placed.|
diff --git a/en/application-dev/reference/arkui-ts/ts-universal-events-drag-drop.md b/en/application-dev/reference/arkui-ts/ts-universal-events-drag-drop.md
index c777a2a3dbf580505a97ff0fabd3908423d8e004..02d3179909afd790d353e4f02eefba814bff35c4 100644
--- a/en/application-dev/reference/arkui-ts/ts-universal-events-drag-drop.md
+++ b/en/application-dev/reference/arkui-ts/ts-universal-events-drag-drop.md
@@ -27,9 +27,9 @@ A drag event is triggered when a component is dragged.
## extraParam
- Provides additional information required for dragging an item.
+Provides additional information required for dragging an item.
- **extraParam** is a string converted from a JSON object. You can obtain the following attributes using the JSON object converted from **Json.parse**.
+**extraParam** is a string converted from a JSON object. You can obtain the following attributes using the JSON object converted from **Json.parse**.
| Name | Type | Description |
| ------------- | ------ | ---------------------------------------- |
@@ -38,7 +38,7 @@ A drag event is triggered when a component is dragged.
## DragEvent
-| Sample Code | Return Value Type | Description |
+| Name | Return Value Type | Description |
| ------ | ------ | ---------------- |
| getX() | number | X-coordinate of the item that is being dragged, in vp.|
| getY() | number | Y-coordinate of the item that is being dragged, in vp.|
diff --git a/en/application-dev/reference/syscap-list.md b/en/application-dev/reference/syscap-list.md
new file mode 100644
index 0000000000000000000000000000000000000000..c3d849539af2d3bed9fa49cc27cc4c8162527226
--- /dev/null
+++ b/en/application-dev/reference/syscap-list.md
@@ -0,0 +1,1396 @@
+# SysCap List
+
+SysCap, short for System Capability, refers to a standalone feature in the operating system.
+
+Before using an API for development, you are advised to read [SysCap](../quick-start/syscap.md) to familiarize yourself with Syscap, and then consult the following tables to see whether the SysCap set required for the API is supported by the target device type.
+
+## SystemCapability.ArkUI.ArkUI.Full
+
+ArKUI standard system
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.ArkUI.ArkUI.Lite
+
+ArkUI small system
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | No |
+
+## SystemCapability.ArkUI.ArkUI.Napi
+
+NAPI functionality
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.ArkUI.ArkUI.Libuv
+
+libuv functionality
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.ArkUI.UiAppearance
+
+Appearance configuration
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BundleManager.BundleFramework
+
+Bundle manager service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BundleManager.DistributedBundleFramework
+
+Distributed scheduler
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BundleManager.BundleTool
+
+Bundle manager CLI tool
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BundleManager.Zlib
+
+zlib compression and decompression tool
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BundleManager.PackingTool
+
+Packing and unpacking tools for bundle management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | No |
+
+## SystemCapability.Graphic.Graphic2D.WebGL
+
+WebGL 1.0 API
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Graphic.Graphic2D.WebGL2
+
+WebGL 2.0 API
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | No | No | No | No | No |
+
+## SystemCapability.WindowManager.WindowManager.Core
+
+Window manager
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.WindowManager.WindowManager.MutiScreen
+
+Multi-screen capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Notification.CommonEvent
+
+Common event
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Notification.Notification
+
+Notification
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Notification.ReminderAgent
+
+reminderAgent
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Notification.Emitter
+
+Event emitter service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.IPC.Core
+
+Inter-process communication (IPC)
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | Yes | No |
+
+## SystemCapability.Communication.SoftBus.Core
+
+DSoftBus
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
+
+## SystemCapability.Communication.NetManager.Core
+
+Basic network management services
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.NetManager.Extension
+
+Extended network management services
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.NetStack
+
+Basic network stack capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.WiFi.Core
+
+Basic Wi-Fi capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.WiFi.STA
+
+Wi-Fi STA capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.WiFi.AP.Core
+
+Wi-Fi AP capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.WiFi.AP.Extension
+
+Wi-Fi AP extension capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | No | No | No | No | No | No | Yes |
+
+## SystemCapability.Communication.WiFi.P2P
+
+Wi-Fi P2P capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.Bluetooth.Core
+
+Bluetooth service and protocol stack
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.Bluetooth.Lite
+
+Bluetooth lightweight service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Communication.NFC.Core
+
+NFC
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | No | No | No | No | No | No | No |
+
+## SystemCapability.Communication.ConnectedTag
+
+Active NFC tag service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | No | No | No | No | No | No | No |
+
+## SystemCapability.Location.Location.Core
+
+Basic capabilities of the location service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | No | No | No |
+
+## SystemCapability.Location.Location.Geocoder
+
+Geocoding capability
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | No | No | No |
+
+## SystemCapability.Location.Location.Geofence
+
+Geofencing capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | No | No | No |
+
+## SystemCapability.Location.Location.Gnss
+
+GNSS hardware capabilities
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | No | No | No |
+
+## SystemCapability.Location.Location.Lite
+
+Lite device capabilities of the location service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | No | No | No |
+
+## SystemCapability.MultimodalInput.Input.Core
+
+Basic input capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.MultimodalInput.Input.InputDevice
+
+Input device management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.MultimodalInput.Input.RemoteInputDevice
+
+Distributed input device management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.MultimodalInput.Input.InputMonitor
+
+Input event listener
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.MultimodalInput.Input.InputConsumer
+
+Input event consumer
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.MultimodalInput.Input.InputSimulator
+
+Input event simulator
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.MultimodalInput.Input.InputFilter
+
+Input event filter
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.PowerManager.BatteryManager.Extension
+
+Battery manager extension capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.PowerManager.BatteryStatistics
+
+Power consumption statistics
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.PowerManager.DisplayPowerManager
+
+Power management display
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.PowerManager.ThermalManager
+
+Temperature control
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.PowerManager.PowerManager.Core
+
+Core capabilities of the system power management service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.PowerManager.PowerManager.Lite
+
+Lite device capabilities of the system power management service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | Yes | No | No | No | No | Yes | Yes |
+
+## SystemCapability.PowerManager.BatteryManager.Core
+
+Core capabilities of the battery service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.PowerManager.BatteryManager.Lite
+
+Lite device capabilities of the battery service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | Yes | No | No | No | No | Yes | Yes |
+
+## SystemCapability.PowerManager.PowerManager.Extension
+
+Extension capabilities of the system power management service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.Core
+
+Basic media capabilities
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.AudioPlayer
+
+Media audio player capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.AudioRecorder
+
+Media audio recorder capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.VideoPlayer
+
+Media video player capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.VideoRecorder
+
+Media video recorder capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.CodecBase
+
+Basic media codec capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.AudioDecoder
+
+Media audio decoding capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.AudioEncoder
+
+Media audio encoding capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.VideoDecoder
+
+Media video decoding capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.VideoEncoder
+
+Media video encoding capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.Spliter
+
+Media splitter capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Media.Muxer
+
+Media muxer capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.AVSession.Core
+
+Basic media session capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.AVSession.Manager
+
+Media session management capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Audio.Core
+
+Basic audio capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Audio.Renderer
+
+Audio output capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Audio.Capturer
+
+Audio input capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Audio.Device
+
+Audio device management capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Audio.Volume
+
+Audio volume management capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Audio.Communication
+
+Audio communication capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Camera.Core
+
+Basic camera capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Camera.DistributedCore
+
+Distributed camera capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Image.Core
+
+Basic image capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Image.ImageSource
+
+Image source decoding and parsing capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Image.ImagePacker
+
+Image packaging capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.Image.ImageReceiver
+
+Image receiving capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.MediaLibrary.Core
+
+Basic capabilities of the media library
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.MediaLibrary.SmartAlbum
+
+Smart album capability of the media library
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Multimedia.MediaLibrary.DistributedCore
+
+Distributed capability of the media library
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Telephony.CoreService
+
+Basic cellular service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.Telephony.CallManager
+
+Call management service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | No | No | No |
+
+## SystemCapability.Telephony.CellularCall
+
+Cellular call service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.Telephony.CellularData
+
+Cellular data service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.Telephony.SmsMms
+
+SMS and MMS services
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.Telephony.StateRegistry
+
+Cellular network status registration service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.Global.I18n
+
+Internationalization
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Global.ResourceManager
+
+Resource management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Customization.ConfigPolicy
+
+Customization framework
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
+
+## SystemCapability.Customization.EnterpriseDeviceManager
+
+Enterprise device management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BarrierFree.Accessibility.Core
+
+Accessibility capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BarrierFree.Accessibility.Vision
+
+Visual accessibility capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BarrierFree.Accessibility.Hearing
+
+Audio accessibility capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.BarrierFree.Accessibility.Interaction
+
+Interaction assistance capability in accessibility
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | No | Yes | No | No |
+
+## SystemCapability.ResourceSchedule.WorkScheduler
+
+Work Scheduler
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.ResourceSchedule.BackgroundTaskManager.ContinuousTask
+
+Continuous task management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.ResourceSchedule.BackgroundTaskManager.TransientTask
+
+Transient task management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.ResourceSchedule.UsageStatistics.App
+
+Application usage statistics
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.ResourceSchedule.UsageStatistics.AppGroup
+
+Application activity group
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Utils.Lang
+
+TS/JS language base library
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.HiLog
+
+HiLog functionality
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.HiLogLite
+
+Lite HiLog functionality
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | Yes | No | No | No | No | Yes | Yes |
+
+## SystemCapability.HiviewDFX.HiTrace
+
+HiTrace for distributed tracing
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.Hiview.FaultLogger
+
+FaultLogger for event recording
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.HiviewLite
+
+Lightweight Hiview service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | Yes | No | No | No | No | Yes | Yes |
+
+## SystemCapability.HiviewDFX.HiChecker
+
+HiChecker mode
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.HiCollie
+
+HiCollie for suspension fault detection
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.HiDumper
+
+HiDumper for system information exporting
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.HiAppEvent
+
+HiAppEvent for application event logging
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.HiSysEvent
+
+HiAppEvent for system event logging
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.HiviewDFX.HiEventLite
+
+HiEventLite for lightweight event logging
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | Yes | No | No | No | No | No | Yes |
+
+## SystemCapability.HiviewDFX.HiProfiler.HiDebug
+
+Debugging and tuning
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Update.UpdateService
+
+Update
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
+
+## SystemCapability.DistributedHardware.DeviceManager
+
+Distributed Device Management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.Security.DeviceAuth
+
+Mutual authentication between devices
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.Security.DataTransitManager
+
+Library of data transmission management and control policies
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.Security.DeviceSecurityLevel
+
+Device security level management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.Security.Huks
+
+Hardware Unique Key (HUK) management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.Security.AccessToken
+
+Access control
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Security.Cipher
+
+Encryption and decryption
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | No | No | No | No | No | Yes | No |
+
+## SystemCapability.Account.OsAccount
+
+Account
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Account.AppAccount
+
+Application account
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.UserIAM.UserAuth.Core
+
+Unified user authentication
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.UserIAM.UserAuth.PinAuth
+
+PIN authentication
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.UserIAM.UserAuth.FaceAuth
+
+Facial authentication
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.MiscServices.InputMethodFramework
+
+Input method framework
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | No | No | No | No |
+
+## SystemCapability.MiscServices.Pasteboard
+
+Pasteboard service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | No | No | No | No |
+
+## SystemCapability.MiscServices.Time
+
+Time, time zone, and timing service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | Yes | No | No |
+
+## SystemCapability.MiscServices.Wallpaper
+
+Wallpaper framework
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | No | No | No | No |
+
+## SystemCapability.MiscServices.ScreenLock
+
+Screen lock service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | No | No | No | No |
+
+## SystemCapability.MiscServices.Upload
+
+Upload service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | No | No | No | No |
+
+## SystemCapability.MiscServices.Download
+
+Download service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | No | No | No | No |
+
+## SystemCapability.FileManagement.StorageService.Backup
+
+Backup and restoration
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.FileManagement.StorageService.SpatialStatistics
+
+Spatial statistics
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.FileManagement.StorageService.Volume
+
+Volume management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.FileManagement.StorageService.Encryption
+
+File encryption capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.FileManagement.File.FileIO
+
+Basic file I/O interfaces
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
+
+## SystemCapability.FileManagement.File.Environment
+
+Environment-related interfaces
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
+
+## SystemCapability.FileManagement.File.DistributedFile
+
+Distributed file extension interfaces
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.FileManagement.AppFileService
+
+Application file sharing
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.FileManagement.UserFileService
+
+User file access service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.USB.USBManager
+
+USB service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Sensors.Sensor
+
+Sensor service subscription
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.Sensors.MiscDevice
+
+Miscellaneous devices- sensors
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | No | No | No | No |
+
+## SystemCapability.Startup.SystemInfo
+
+Basic system information
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
+
+## SystemCapability.DistributedDataManager.RelationalStore.Core
+
+Basic relational database capabilities
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.DistributedDataManager.RelationalStore.Synchronize
+
+Distributed capability of relational databases
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | Yes | No | No |
+
+## SystemCapability.DistributedDataManager.RelationalStore.Lite
+
+Lightweight relational database
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | No | No | No | No | No | No | No |
+
+## SystemCapability.DistributedDataManager.KVStore.Core
+
+Core capabilities of key-value databases
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.DistributedDataManager.KVStore.Lite
+
+Core capabilities of lightweight key-value databases
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| No | No | No | No | No | No | No | No |
+
+## SystemCapability.DistributedDataManager.KVStore.DistributedKVStore
+
+Distributed key-value database
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.DistributedDataManager.DataObject.DistributedObject
+
+Distributed data object
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.DistributedDataManager.Preferences.Core
+
+Core capabilities of preferences data storage
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.DistributedDataManager.DataShare.Core
+
+Basic capabilities of cross-process data sharing
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.DistributedDataManager.DataShare.Consumer
+
+Data conumser of cross-process data sharing
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.DistributedDataManager.DataShare.Provider
+
+Data provider of cross-process data sharing
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Ability.AbilityBase
+
+Definition of basic component running data, including wants and system configuration
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Ability.AbilityRuntime.Core
+
+Core basic functional modules for component runtime, including application initialization and GUI-less component running
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Ability.AbilityRuntime.FAModel
+
+Feature ability (FA) model
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Ability.AbilityRuntime.AbilityCore
+
+Universal components (with GUIs)
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Ability.AbilityRuntime.Mission
+
+Task management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Ability.AbilityTools.AbilityAssistant
+
+CLI tool
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Ability.Form
+
+Widget management
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Ability.DistributedAbilityManager
+
+continuationManager for starting the device selection module and updating the continuation status.
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Applications.ContactsData
+
+Contacts database
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | No | No | No |
+
+## SystemCapability.Applications.Contacts
+
+Contacts
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | No | No | No |
+
+## SystemCapability.Applictaions.settings.Core
+
+API setting
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Test.UiTest
+
+UiTest capability
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | No | Yes | Yes | No | No | No |
+
+## SystemCapability.Web.Webview.Core
+
+Webview component
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | No | Yes | Yes | Yes | Yes | No | No |
+
+## SystemCapability.Cloud.AAID
+
+AAID management service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
+
+## SystemCapability.Cloud.OAID
+
+OAID management service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
+
+## SystemCapability.Cloud.VAID
+
+VAID management service
+
+| Default | Sports Watch| Smart Watch| Tablet| Head Unit| Smart TV| Smart Vision | Router |
+| ------- | ------ | ------ | ---- | ---- | ------ | ------------ | ------ |
+| Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |