Skip to content

Commit 46a597b

Browse files
authored
Merge pull request #2836 from MicrosoftDocs/Nava_mref
Updating link
2 parents 0d4e622 + 5e76406 commit 46a597b

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

powerapps-docs/developer/component-framework/manifest-schema-reference/property.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Property Element | Microsoft Docs
3-
description:
3+
description:
44
keywords:
55
ms.author: nabuthuk
66
author: Nkrb
@@ -27,10 +27,10 @@ Model-driven apps and canvas apps (public preview)
2727
|------|------|------|-------|
2828
|name |Name of the property |string |Yes |
2929
|display-name-key |Used in the customization screens as localized strings that describes the name of the property. |string |Yes |
30-
|of-type|Defines the data type of the property|See [Remarks](#remarks)|Optional|
30+
|of-type| Defines the data type of the property| See [Remarks](#remarks)|Optional|
3131
|usage |The usage attribute identifies if the property is meant to represent an entity attribute that the component can change (bound) or read-only values (input)|bound or input |Optional |
3232
|required |Whether the property is required or not |boolean |Optional |
33-
|of-type-group |Name of the type-group as defined in manifest|string |Optional |
33+
|of-type-group |Name of the type-group as defined in manifest| string |Optional |
3434
|description-key |Used in the customization screens as localized strings that describes the description of the property. |string |Optional |
3535
|default-value |The default configuration value provided to the component. In model-driven apps, this attribute is only allowed on inputs since the bound parameters expect to have a field associated. |string |Optional |
3636

@@ -50,7 +50,7 @@ The `of-type` attribute value must be one of the following:
5050
## Example
5151

5252
```xml
53-
<property name="myFirstProperty" display-name-key="myFirstProperty_Display_Key"
53+
<property name="myFirstProperty" display-name-key="myFirstProperty_Display_Key"
5454
description-key="myFirstProperty_Desc_Key" of-type="SingleLine.Text" usage="bound" required="true" />
5555
```
5656

powerapps-docs/developer/component-framework/reference/property.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Property | Microsoft Docs
3-
description:
3+
description:
44
keywords:
55
ms.author: nabuthuk
66
author: Nkrb
@@ -16,9 +16,9 @@ ms.assetid: a118f54f-be47-4f35-9ffb-7afa6c296631
1616
# Property
1717

1818
Interface for `context.parameters.<property_key>`
19-
## Available for
19+
## Available for
2020

21-
Model-driven apps
21+
Model-driven apps and canvas apps (public preview)
2222

2323
## Properties
2424

@@ -49,4 +49,4 @@ Model-driven apps
4949
### Related topics
5050

5151
[Power Apps component framework API reference](../reference/index.md)<br/>
52-
[Power Apps component framework overview](../overview.md)
52+
[Power Apps component framework overview](../overview.md)

powerapps-docs/developer/model-driven-apps/export-ribbon-definitions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If the Ribbon for your organization has been modified, you should export the cur
4141

4242
### Decompress the ribbon data
4343

44-
The ribbon data is exported as a compressed file. To decompress the file into XML you have to use the [System.IO.Packaging.ZipPackage](https://msdn.microsoft.com/library/system.io.packaging.zippackage.aspx) class. The following example is a helper method used in the SDK sample to decompress the file.
44+
The ribbon data is exported as a compressed file. To decompress the file into XML, you have to use the [System.IO.Packaging.ZipPackage](https://msdn.microsoft.com/library/system.io.packaging.zippackage.aspx) class. The following example is a helper method used in the SDK sample to decompress the file.
4545

4646
``` C#
4747
/// <summary>
@@ -87,7 +87,7 @@ File.WriteAllBytes(applicationRibbonPath, unzipRibbon(appribResp.CompressedAppli
8787

8888
To retrieve the ribbon definition for entities, you can just include the name of the entity as a parameter to the <xref:Microsoft.Crm.Sdk.Messages.RetrieveEntityRibbonRequest>.
8989

90-
To retrieve the ribbon definitions for all entities that support the ribbon you need a list of those system entities that have ribbon definitions that vary from the entity ribbon template. The following sample shows an array of all the system entities that have ribbon definitions.
90+
To retrieve the ribbon definitions for all entities that support the ribbon, you need a list of those system entities that have ribbon definitions that vary from the entity ribbon template. The following sample shows an array of all the system entities that have ribbon definitions.
9191

9292
```C#
9393
//This array contains all of the system entities that use the ribbon.

0 commit comments

Comments
 (0)