この文章は Salesforce 機械翻訳システムを使用して翻訳されました。詳細はこちらをご参照ください。
英語に切り替える

StandardSetController(controllerSObjects)

指定した標準オブジェクトまたはカスタムオブ��ェクトのリストの ApexPages.StandardSetController クラスのインスタンスを作成します。

署名

public StandardSetController(List<sObject> controllerSObjects)

パラメータ

controllerSObjects
型: List<sObject>
標準オブジェクトまたはカスタムオブジェクトのリスト。

1List<account> accountList = [SELECT Name FROM Account LIMIT 20];
2ApexPages.StandardSetController ssc = new ApexPages.StandardSetController(accountList);