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
Code+1Code+1 

Visualforce requirement

Hi All,
 I would like to develop a vf page, which displays three columns from one object. 

 Field Name | Help Text | Description . This help text and description are entered while creating the fields.

 I would like to capture these above mentioned details in a visualforce page.
 Kindly help. I tried the below code and it does not suit my requirement

 <apex:page standardController="Account">
<apex:form >
<apex:pageBlock >
<apex:pageBlockSection > 
    <apex:pageBlockSectionItem >
        <apex:outputLabel value="{!$ObjectType.Account.Fields.Active__c.inlineHelpText}"/>
        <apex:inputField value="{!Account.Active__c}"/>
    </apex:pageBlockSectionItem>
</apex:pageBlockSection> 
</apex:pageBlock>
</apex:form>
</apex:page>