What are the inline Visualforce pages in Salesforce?

What are the inline Visualforce pages in Salesforce?

A Visualforce page with attribute standardController with an object name can be referenced inside the page layouts of the object. This is nothing but Inline Visualforce page.

Sample Visuaforce page:

<apex:page standardController=”Account”>
This is Inline Visualforce page
</apex:page>

Adding Visualforce page to the page layout:

Output:

Cheers!!!

Leave a Reply