TemplateLinkedPosition

TemplateLinkedPosition class

연결된 필드를 사용하는 템플릿 필드 위치를 제공합니다.

public sealed class TemplateLinkedPosition : TemplatePosition

생성자

이름 설명
TemplateLinkedPosition(string, Size, TemplateLinkedPositionEdges) 의 새 인스턴스를 초기화합니다.TemplateLinkedPosition 클래스.
TemplateLinkedPosition(string, Size, TemplateLinkedPositionEdges, bool) 의 새 인스턴스를 초기화합니다.TemplateLinkedPosition 클래스.

속성

이름 설명
AutoScale { get; } 여부를 나타내는 값을 가져옵니다.SearchArea 링크된 필드 크기로 조정됩니다.
Edges { get; } 필드가 검색되는 연결된 필드의 가장자리를 가져옵니다.
LinkedFieldName { get; } 연결된 필드 이름을 가져옵니다.
SearchArea { get; } 필드가 검색되는 영역의 크기를 가져옵니다.

다음 예는 상황 에 대한 코드를 보여줍니다. 송장 번호가 있는 필드가 “송장 번호” 문자열의 오른쪽 에 배치된 것으로 알려진 경우 다음 코드가 사용됩니다.

// "인보이스 번호" 텍스트를 찾기 위해 정규식 템플릿 필드를 만듭니다.
TemplateField invoice = new TemplateField(new TemplateRegexPosition("Invoice Number"), "Invoice");

// "Invoice" 필드와 연결된 관련 템플릿 필드를 생성하고 오른쪽에 있는 값을 추출합니다.
TemplateField invoiceNumber = new TemplateField(
    new TemplateLinkedPosition("invoice", new Size(100, 15), new TemplateLinkedPositionEdges(false, false, true, false)),
    "InvoiceNumber");

또한보십시오