Footnote

텍스트 객체에서만 사용되는 Footnote 텍스트 함수는 해당 보고서 객체 내의 각주에 대해 요청된 정보를 반환합니다. Footnote는 지정된 객체 또는 보고서의 모든 객체(첫 번째 매개변수가 "all"로 설정된 경우)에 표시되는 각주에 대한 정보를 인쇄합니다. 그리드가 참조되는 경우 그리드의 모든 각주가 인쇄됩니다. 부분 POV 각주가 먼저 인쇄된 다음 전체 POV 각주가 인쇄됩니다. 전체 POV 각주는 왼쪽 위에서 오른쪽 아래로 셀 위치 순서대로 페이지별로 인쇄됩니다. 두 가지 이상의 구문이 지원됩니다.

구문:

Footnote("ObjectName, Attributes, Reference, Attachments")

Footnote("ObjectName")

Footnote("ObjectName", Attributes)

Footnote("ObjectName", Attributes, Reference)

Footnote("ObjectName", Attributes, Attachments)

인수 설명

ObjectName

각주를 포함하는 보고서 객체의 이름입니다. "all"인 경우 함수는 보고서의 모든 객체에서 사용할 수 있는 모든 각주를 반환합니다. ObjectName 매개변수는 그리드 객체의 이름이 바뀔 때 업데이트됩니다.

Attributes

각주에서 반환된 정보입니다. 여기에는 다음 키워드가 포함될 수 있습니다.

  • All(기본값)

  • Title, Description (Desc), Author, Date, Category 등의 키워드 한 개 이상으로 이루어진 조합

Attributes 키워드는 원하는 출력 순서로 정렬할 수 있습니다. 각 속성을 앰퍼샌드(&)로 구분합니다.

Reference

어떤 노트가 반환될지 나타내는 키워드입니다.

  • All(기본값) - 초기 노트 및 모든 회신을 반환합니다.

  • Top <n> - 초기 노트 및 처음 회신을 반환합니다. (초기 노트는 항상 표시되며 숫자에는 초기 노트가 포함되지 않습니다.)

  • Bottom - 초기 노트 및 Bottom <n>에 지정된 마지막 회신 수를 표시합니다. (초기 노트는 항상 표시되며 숫자에는 초기 노트가 포함되지 않습니다.)

  • BottomOnly <n> - 마지막 회신을 반환합니다. 초기 노트는 회신 수가 BottomOnly <n> 숫자보다 적은 경우 표시됩니다. 예를 들어 BottomOnly 5는 5개의 회신이 있는 노트에 대해 초기 노트를 표시하지 않지만 4개의 회신이 있는 노트에 대해서는 초기 노트를 표시합니다.

  • First - 초기 노트만 반환합니다.

  • Replies - 초기 노트를 제외한 모든 회신을 표시합니다.

Attachments

첨부파일에 각주가 인쇄되어야 하는지 여부를 나타내는 부울 값(true/false)입니다.

  • True - 첨부파일이 보고서와 함께 끝에 인쇄됩니다.

  • False(기본값) - 첨부파일이 인쇄되지 않습니다.

예:

<<Footnote("Grid1", All, All, true)>>

<<Footnote(All, All, All, true)>>

<<Footnote(All, All, Bottom 2, true)>>

<<Footnote(All, All, BottomOnly 20, true)>>

<<Footnote(All, All, First, true)>>

<<Footnote(All, All, Replies, true)>>

<<Footnote("Grid1", Title & Description & Author & Date & Category, All, true)>>

<<Footnote("Text1", Title & Description & Date & Category, Top 10, false)>>

<<Footnote("Image1", Title & Description & Author, Bottom 4, false)>>

<<Footnote("Text1", Title&Description&Author, BottomOnly 12)>>

<<Footnote("Image1", Title&Description&Author, First)>>

<<Footnote("Grid2", Title&Description&Author, Replies)>>

<<Footnote("Grid Name")>>

<<Footnote(all, All)>>

<<Footnote(cur, Description)>>

<<Footnote(cur, title & Description, true)>>

<<Footnote(cur, title & Author & Description, false)>>

<<Footnote("folder1\folder 2\Grid1", title & Description&Category, Top20)>>

<<Footnote("folder1\folder 2\Grid1", title & Description&Category, Bottom 2)>>

<<Footnote("folder1\folder 2\Chart2", title & Description, Top 20, False)>>

<<Footnote("current", title & Description, All)>>

<<Footnote("current", title & Description, first)>>

<<Footnote(All, Title&Description&author, Top 40, true)>>