You plan to create a Microsoft Power Apps Component Framework (PCF) code component for a record form in a model-driven app.
The code must be able to read the record's Id column.
You need to configure the manifest.
Which solution should you use?
You plan to create a Microsoft Power Apps Component Framework (PCF) code component for a record form in a model-driven app.
The code must be able to read the record's Id column.
You need to configure the manifest.
Which solution should you use?
In a PCF control, if you need to access a field value (such as the record's Id), you define a bound property in the manifest.
The correct solution is B. property. Explanation: In a PCF control, the manifest file is used to configure various aspects of the control. If you need to access a specific record field, such as the Id column, you would define it as a property in the control's manifest. The property element allows you to define inputs and outputs that the control can interact with. For accessing record-related data like the Id, you'd typically configure it as a property in the manifest, so your code component can use it. resources: Defines the static resources such as scripts or files used by the control. property: Defines the fields or parameters (like the record Id) that the control can access and interact with. feature-usage: Defines which features are enabled or used within the control. type-group: Groups the control into specific categories, but doesn't relate to accessing data directly.