Skip to content

Commit 2084789

Browse files
authored
Merge pull request #1679 from MicrosoftDocs/master
Publish: added function-json, etc.
2 parents db2d38f + 6e676e9 commit 2084789

File tree

11 files changed

+393
-171
lines changed

11 files changed

+393
-171
lines changed

powerapps-docs/maker/TOC.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
- name: CountRows
411411
href: ./canvas-apps/functions/function-table-counts.md
412412
- name: Data types
413-
href: ./canvas-apps/functions/data-types.md
413+
href: ./canvas-apps/functions/data-types.md
414414
- name: DataSourceInfo
415415
href: ./canvas-apps/functions/function-datasourceinfo.md
416416
- name: Date
@@ -485,6 +485,8 @@
485485
href: ./canvas-apps/functions/function-now-today-istoday.md
486486
- name: IsType
487487
href: ./canvas-apps/functions/function-astype-istype.md
488+
- name: JSON
489+
href: ./canvas-apps/functions/function-json.md
488490
- name: Language
489491
href: ./canvas-apps/functions/function-language.md
490492
- name: Last

powerapps-docs/maker/canvas-apps/delete-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ search.app:
1818
This article shows you how to delete a canvas app from your PowerApps account and from the accounts of anybody with whom the app was shared.
1919

2020
## Delete an app from your account
21-
1. Open [powerapps.com](https://web.powerapps.com?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc), and then click or tap **Apps** in the left navigation bar.
21+
1. Open [powerapps.com](https://web.powerapps.com?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc), and then select **Apps** in the left **Tree view** pane.
2222

2323
![](./media/delete-app/file-apps.png)
2424
2. (optional) Near the upper-left corner, filter the list of apps to show only those apps that you own or only those apps to which you contribute.
@@ -27,16 +27,16 @@ This article shows you how to delete a canvas app from your PowerApps account an
2727

2828
> [!NOTE]
2929
> If the app that you want to delete doesn't appear, make sure that you're in the right environment.
30-
3. Near the right edge, click or tap the info icon for the app that you want to delete.
30+
3. Near the right edge, select the info icon for the app that you want to delete.
3131

3232
![](./media/delete-app/app-options.png)
33-
4. Near the upper-right corner, click or tap the trash-can icon to delete the app.
33+
4. Near the upper-right corner, select the trash-can icon to delete the app.
3434

3535
![](./media/delete-app/delete-icon.png)
3636

3737
> [!NOTE]
3838
> You must have the **Contributor** permission for an app before you can delete it.
39-
5. In the dialog box that appears, click or tap **Delete from cloud**.
39+
5. In the dialog box that appears, select **Delete from cloud**.
4040

4141
> [!IMPORTANT]
4242
> This action will permanently delete this app not only from your account but also from the accounts of all users with whom this app was shared.

powerapps-docs/maker/canvas-apps/formula-reference.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Formulas combine many elements. Listed below are:
2525
Other elements include:
2626

2727
* [All operators](functions/operators.md)
28-
* [Controls and their properties](reference-properties.md)
28+
* [Controls and their properties](reference-properties.md)
2929
* [Data types](functions/data-types.md)
3030

3131
## A
@@ -181,7 +181,10 @@ Other elements include:
181181

182182
**[IsToday](functions/function-now-today-istoday.md)** – Checks whether a date/time value is sometime today.
183183

184-
**[IsType](functions/function-astype-istype.md)** – Checks whether a record reference refers to a specific entity type.
184+
**[IsType](functions/function-astype-istype.md)** – Checks whether a record reference refers to a specific entity type.
185+
186+
## J
187+
**[JSON](functions/function-json.md)** - Generates a JSON text string for a table, a record, or a value.
185188

186189
## L
187190
**[Language](functions/function-language.md)** – Returns the language tag of the current user.

powerapps-docs/maker/canvas-apps/functions/data-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ This article provides details for the data types that canvas apps support. When
2323
| Data type | Description | Examples |
2424
|-----------|-------------|---------|
2525
| **Boolean** | A *true* or *false* value. Can be used directly in **If**, **Filter** and other functions without a comparison. | *true* |
26-
| **Hyperlink** | A text string that holds a hyperlink. | **"http://powerapps.microsoft.com"** |
27-
| **Currency** | A currency value that's stored in a floating-point number. Currency values are the same as number values with currency-formatting options. | **123**<br>**4.56** |
28-
| **Image** | A [Universal Resource Identifier (URI)](https://en.wikipedia.org/wiki/Uniform_Resource_Identifier) text string to an image in .jpeg, .png, .svg, .gif, and other common web-image formats. | **MyImage** added as an app resource<br>**"https://northwindtraders.com/logo.jpg"**<br>**"appres://blobmanager/7b12ffa2..."** |
2926
| **Color** | A color specification, including an alpha channel. | **Color.Red**<br>**ColorValue( "#102030" )**<br>**RGBA( 255, 128, 0, 0.5 )** |
27+
| **Currency** | A currency value that's stored in a floating-point number. Currency values are the same as number values with currency-formatting options. | **123**<br>**4.56** |
3028
| **Date** | A date without a time, in the time zone of the app's user. | **Date( 2019, 5, 16 )** |
3129
| **DateTime** | A date with a time, in the time zone of the app's user. | **DateTimeValue( "May 16, 2019 1:23:09 PM" )** |
3230
| **GUID** | A [Globally Unique Identifier](https://en.wikipedia.org/wiki/Universally_unique_identifier). | **GUID()**<br>**GUID( "123e4567-e89b-12d3-a456-426655440000" )** |
31+
| **Hyperlink** | A text string that holds a hyperlink. | **"http://powerapps.microsoft.com"** |
32+
| **Image** | A [Universal Resource Identifier (URI)](https://en.wikipedia.org/wiki/Uniform_Resource_Identifier) text string to an image in .jpeg, .png, .svg, .gif, or other common web-image format. | **MyImage** added as an app resource<br>**"https://northwindtraders.com/logo.jpg"**<br>**"appres://blobmanager/7b12ffa2..."** |
3333
| **Media** | A URI text string to a video or audio recording. | **MyVideo** added as an app resource<br>**"https://northwindtraders.com/intro.mp4"**<br>**"appres://blobmanager/3ba411c..."** |
3434
| **Number** | A floating-point number. | **123**<br>**-4.567**<br>**8.903e121** |
3535
| **Option set** | A choice from a set of options, backed by a number. This data type combines a localizable text label with a numeric value. The label appears in the app, and the numeric value is stored and used for comparisons. | **ThisItem.OrderStatus** |

0 commit comments

Comments
 (0)