Skip to content

Commit 083a2dc

Browse files
authored
Merge pull request #1591 from MicrosoftDocs/master
Pushing changes live
2 parents fbd075b + 8ea2e07 commit 083a2dc

19 files changed

+77
-20
lines changed

powerapps-docs/developer/component-framework/create-custom-controls-using-pcf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To get started, open a new Developer Command Prompt for VS 2017 after installing
5959
> Today we offer two types of components **field** and **dataset**.
6060
6161
4. To retrieve all the required project dependencies, run the command `npm install`.
62-
5. Open your project folder (`C:\Users\<your name>\Documents\My_PCF_Control\<component name>`) in any developer environment of your choice and get started with your custom component development. If you would like a to follow a step-by-step tutorial please scroll down see how a sample linear component is implemented.
62+
5. Open your project folder (`C:\Users\<your name>\Documents\My_PCF_Control\<component name>`) in any developer environment of your choice and get started with your custom component development.
6363

6464
## Building your components
6565

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ author: "nkrb"
1010
ms.author: "nabuthuk"
1111
manager: "Jdaly"
1212
---
13-
# PowerApps component Framework API Reference
13+
# PowerApps component framework API reference
1414

1515
[!INCLUDE[cc-beta-prerelease-disclaimer](../../../includes/cc-beta-prerelease-disclaimer.md)]
1616

powerapps-docs/developer/component-framework/sample-controls/angular-flip-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,5 +293,5 @@ border-radius : 4px
293293
### Related topics
294294

295295
[PowerApps component framework Manifest Schema Reference](../manifest-schema-reference/index.md)<br />
296-
[PowerApps component framework API Reference](../index.md)<br />
296+
[PowerApps component framework API Reference](../reference/index.md)<br />
297297
[PowerApps component framework Overview](../overview.md)

powerapps-docs/developer/component-framework/sample-controls/control-state-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,5 +285,5 @@ public destroy(): void
285285
### Related topics
286286

287287
[Download sample components](https://go.microsoft.com/fwlink/?linkid=2088525)<br/>
288-
[PowerApps component framework API Reference](../index.md)<br/>
288+
[PowerApps component framework API Reference](../reference/index.md)<br/>
289289
[PowerApps component framework Manifest Schema Reference](../manifest-schema-reference/index.md)

powerapps-docs/developer/component-framework/sample-controls/data-set-grid-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,5 +395,5 @@ The ***getSortedColumnsOnView*** method returns the list of columns based on the
395395
### Related topics
396396

397397
[Download sample components](https://go.microsoft.com/fwlink/?linkid=2088525)<br/>
398-
[PowerApps component framework API Reference](../index.md)<br/>
398+
[PowerApps component framework API Reference](../reference/index.md)<br/>
399399
[PowerApps component framework Manifest Schema Reference](../manifest-schema-reference/index.md)

powerapps-docs/developer/component-framework/sample-controls/formatting-api-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ text-align: center;
256256
### Related topics
257257

258258
[Download sample components](https://go.microsoft.com/fwlink/?linkid=2088525)<br/>
259-
[PowerApps component framework API Reference](../index.md)<br/>
259+
[PowerApps component framework API Reference](../reference/index.md)<br/>
260260
[PowerApps component framework Manifest Schema Reference](../manifest-schema-reference/index.md)
261261

262262

powerapps-docs/developer/component-framework/sample-controls/iframe-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,5 +173,5 @@ The [updateView](../reference/control/updateview.md) method is invoked whenever
173173

174174
[Download sample components](https://go.microsoft.com/fwlink/?linkid=2088525)<br/>
175175
[PowerApps component framework Manifest Schema Reference](../manifest-schema-reference/index.md)<br />
176-
[PowerApps component framework API Reference](../index.md)<br />
176+
[PowerApps component framework API Reference](../reference/index.md)<br />
177177
[PowerApps component framework Overview](../overview.md)

powerapps-docs/developer/component-framework/sample-controls/image-upload-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,5 +383,5 @@ The `device.pickFile` method opens a dialog box to select files from your comput
383383
### Related topics
384384

385385
[Download sample components](https://go.microsoft.com/fwlink/?linkid=2088525)<br/>
386-
[PowerApps component framework API Reference](../index.md)<br/>
386+
[PowerApps component framework API Reference](../reference/index.md)<br/>
387387
[PowerApps component framework Manifest Schema Reference](../manifest-schema-reference/index.md)

powerapps-docs/developer/component-framework/sample-controls/increment-control.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.author: "nabuthuk"
1414

1515
This sample component shows how to bind data with PowerApps component framework and error handling. This component renders as a textbox with an `Increment` button in the runtime. The text box shows the current value and the `Increment` button is clickable. Whenever you click on the button, the value within the textbox is increased by 1. The increment value can be changed to any number you wish.
1616

17-
To implement this component, the first thing you need to define the [Manifest](../manifest-schema-reference/manifest.md)file, and then implement the custom logic in TypeScript.
17+
To implement this component, the first thing you need to define the [Manifest](../manifest-schema-reference/manifest.md) file, and then implement the custom logic in TypeScript.
1818

1919
> [!div class="mx-imgBorder"]
2020
> ![Increment component](../media/increment-control.png "Increment component")
@@ -246,5 +246,5 @@ Edit the value in the text box, and if it is a valid integer, then it updates th
246246
### Related topics
247247

248248
[Download sample components](https://go.microsoft.com/fwlink/?linkid=2088525)<br/>
249-
[PowerApps component framework API Reference](../index.md)<br/>
249+
[PowerApps component framework API Reference](../reference/index.md)<br/>
250250
[PowerApps component framework Manifest Schema Reference](../manifest-schema-reference/index.md)

powerapps-docs/developer/component-framework/sample-controls/linear-input-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,5 +242,5 @@ public updateView(context: ControlFramework.IPropBag<InputsOutputs.IInputBag>,):
242242
### Related topics
243243

244244
[Download sample components](https://go.microsoft.com/fwlink/?linkid=2088525)<br/>
245-
[PowerApps component framework API Reference](../index.md)<br/>
245+
[PowerApps component framework API Reference](../reference/index.md)<br/>
246246
[PowerApps component framework Manifest Schema Reference](../manifest-schema-reference/index.md)

0 commit comments

Comments
 (0)