다음을 통해 공유


DocumentTableCell 클래스

테이블 셀의 위치와 내용을 나타내는 개체입니다.

상속
builtins.object
DocumentTableCell

생성자

DocumentTableCell(**kwargs: Any)

메서드

from_dict

DocumentTableCell 셰이프의 받아쓰기를 모델 자체로 변환합니다.

to_dict

DocumentTableCell의 받아쓰기 표현을 반환합니다.

from_dict

DocumentTableCell 셰이프의 받아쓰기를 모델 자체로 변환합니다.

from_dict(data: Dict) -> DocumentTableCell

매개 변수

Name Description
data
필수

DocumentTableCell 셰이프의 사전입니다.

반환

형식 Description

DocumentTableCell

to_dict

DocumentTableCell의 받아쓰기 표현을 반환합니다.

to_dict() -> Dict

반환

형식 Description

dict

특성

bounding_regions

테이블 셀을 포함하는 경계 영역입니다.

bounding_regions: List[BoundingRegion] | None

column_index

셀의 열 인덱스입니다.

column_index: int

column_span

이 셀에 걸쳐 있는 열 수입니다.

column_span: int | None

content

테이블 셀의 연결된 내용을 읽기 순서로 연결합니다.

content: str

kind

"content", "rowHeader", "columnHeader", "stubHead", "description". 기본값: "content".

kind: str | None

row_index

셀의 행 인덱스입니다.

row_index: int

row_span

이 셀에 걸쳐 있는 행 수입니다.

row_span: int | None

spans

읽기 순서에 연결된 콘텐츠의 테이블 셀 위치입니다.

spans: List[DocumentSpan]