ApexComponent
Contains metadata for Visualforce components that can be reused in multiple Visualforce pages.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex component. | |
| NamespacePrefix | String | True |
Namespace prefix for the component, used when part of a managed package. | |
| Name | String | False |
The developer-assigned name of the component. | |
| ApiVersion | Double | False |
The Salesforce API version this component is compatible with. | |
| MasterLabel | String | False |
User-friendly label for the Apex component, often used in the UI. | |
| Description | String | False |
Text description of the component's purpose or functionality. | |
| ControllerType | String | False |
Type of controller used by the component, such as Apex class or standard controller. | |
| ControllerKey | String | False |
Reference to the specific controller implementation used by the component. | |
| Markup | String | False |
The Visualforce markup (HTML-like tags) that defines the component's structure and behavior. | |
| CreatedDate | Datetime | True |
Date and time the component was originally created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the Apex component. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last updated the component. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking internal updates and synchronization. | |
| LastModifiedDate | Datetime | True |
Date and time the component was last modified. |