EndImpressionRegion

概要 

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

構文 

EndImpressionRegion(1)

関数のプロパティ 

序数説明
1Booleanネストされたすべてのインプレッション領域を関数で閉じるかどうかを示します。true の値では、ネストされたすべてのインプレッション領域を閉じます。false の値では、ネストされたすべてのインプレッション領域を閉じません。

例 

<script runat="server>
     Platform.Function.BeginImpressionRegion("mainBlock");
     var content = Platform.Function.ContentArea("123456");
     var moreContent = Platform.Function.ContentArea("789");
     Platform.Function.EndImpressionRegion("mainBlock");
</script>