property TextSnapshotCacheCount: Integer; // read only
이 값은 지금 텍스트 스냅샷이 유효한 페이지 수를 세므로, 문서가 로드된 동안 최대 Min(TextSnapshotCacheCapacity, PageCount)입니다
이 개수는 TextPageSnapshot이 완료되어 새 스냅샷을 캐시하면 늘어나고, 용량 압박, 페이지 편집, 문서 다시 로드로 항목이 무효화되면 줄어듭니다
읽기는 네이티브 PDFium 페이지 접근이 쓰는 렌더 잠금으로 보호되므로, 이 값은 동시 렌더링과 일관됩니다
문서가 로드되지 않았거나 TextSnapshotCacheCapacity가 0인 동안에는 개수가 0입니다
이 개수는 특정 시점의 점유 수치입니다. 누적 조회 효율이 필요하면 TextSnapshotCacheHitCount와 TextSnapshotCacheMissCount를 사용하세요
Snapshot := Pdf.TextPageSnapshot[1];
LogTextSnapshotCache(Pdf.TextSnapshotCacheCount,
Pdf.TextSnapshotCacheCapacity);