No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Newer Version Available
getRecord()
Returns the record that is currently in context, based
on the value of the id query
string parameter in the Visualforce page URL.
Signature
public SObject getRecord()
Return Value
Type: sObject
Usage
Note that only the fields that are referenced in the associated Visualforce markup are available for querying on this SObject. All other fields, including fields from any related objects, must be queried using a SOQL expression.
Example
1<apex:outputText
2value="{!account.billingcity}
3{!account.contacts}"
4rendered="false"/>