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
the gamethe game 

Custom Label

What is the object Name which store Custom Label.

Devendra@SFDCDevendra@SFDC

Hi,

 

I am not aware about the Object which stores Custom Labels.

 

Custom labels are called in Apex using System.Label.Label_name. For Visualforce, use the $Label global variable.

 

Label Name : MyLabel

Access in Apex: System.Label.MyLabel

Access in Visualforce: <apex:ouputLabel value="{!$Label.MyLabel}" />

 

 

Thanks,

Devendra 

 

 

the gamethe game

 

 thanks Devendra