[Salesforce]カスタム表示ラベルをApexクラスで表示
result = System.Label.HelloLabel;
kinkun's blog
[Salesforce]カスタム表示ラベルをApexクラスで表示
result = System.Label.HelloLabel;
カスタム表示ラベルをVisualforceページで表示例です。
<apex:page>
<h1>{!$Label.HelloLabel}</h1>
</apex:page>