EndImpressionRegion

概要 

提供されたコンテンツ内のインプレッション領域を終了します。インプレッション領域を使用して、コンテンツの特定の領域を分析目的で識別できます。

構文 

EndImpressionRegion(1)

関数のプロパティ 

序数説明
1Booleanネストされたすべてのインプレッション領域を関数で閉じるかどうかを示します。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>