BeginImpressionRegion
ContentArea
ContentAreaByName
ContentBlockById
ContentBlockByKey
ContentBlockByName
ContentImagebyID
ContentImagebyKey
EndImpressionRegion
TreatAsContent
提供されたコンテンツ内のインプレッション領域を終了します。インプレッション領域を使用して、コンテンツの特定の領域を分析目的で識別できます。
EndImpressionRegion(1)
| 序数 | 型 | 説明 | |
|---|---|---|---|
| 1 | Boolean | ネストされたすべてのインプレッション領域を関数で閉じるかどうかを示します。true の値では、ネストされたすべてのインプレッション領域を閉じます。false の値では、ネストされたすべてのインプレッション領域を閉じません。 |
1<script runat="server>
2 Platform.Function.BeginImpressionRegion("mainBlock");
3 var content = Platform.Function.ContentArea("123456");
4 var moreContent = Platform.Function.ContentArea("789");
5 Platform.Function.EndImpressionRegion("mainBlock");
6</script>