function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
eswar R 1eswar R 1 

can any one tell me what is visual force page components

Rahul_kumar123Rahul_kumar123
Hi Eswar,
  • Visualforce components are small, reusable pieces of functionality—think widgets, panels, user interface elements, that kind of thing—that you use in Visualforce page markup. You can use standard Visualforce components, and create your own custom components.
 
I hope it will be helpful.

Please mark it as solved if it resolved the issue.

BestRegards
Rahulkumar
Indranil Deria 7Indranil Deria 7
Hi Eswar,

A Visualforce page can contain a mixture of HTML and Visualforce components.The HTML and component tags need to be well-formed, and all pages begin with the page component.
For example, here is the most basic Visualforce page: 
        <apex:page>
        </apex:page>
Each component has a set of optional and required attributes, which provide additional information to the component. For example, the following attributes remove the sidebar and top header in a Visualforce page:
                  <apex:page sidebar="false" showHeader="false"><!-- sidebar -->
                  </apex:page>

Ex:
       <apex:page sidebar="false" showHeader="false"> 
            <apex:outputPanel layout="block" style="font-weight:bold">  <!-- outputPanel -->
                     VF Component.
            </apex:outputPanel>
       </apex:page>

Thanks