アイテムのレイアウトをプログラムで「リセット」するにはどうすればよいですか? これは、Sitecore クライアントの [プレゼンテーション] タブから実行できます。この例はどこにも見つかりませんでした。
ありがとう
これは、あなたが求めることを行うためのかなり基本的な方法です。
Item item; // your item here... Sitecore.Context.Item perhaps?
using (new Sitecore.SecurityModel.SecurityDisabler())
{
if (!string.IsNullOrEmpty(item["__renderings"]))
{
using (new Sitecore.Data.Items.EditContext(item))
{
item.Fields["__renderings"].Reset();
}
}
}