from __future__ import annotations
import io
from typing import List, Iterator, Tuple, Optional, Any, TYPE_CHECKING, Callable
from ctypes import *
from datetime import datetime
from numbers import Number
from pdftools_sdk.internal import _lib
from pdftools_sdk.internal.utils import _string_to_utf16, _utf16_to_string
from pdftools_sdk.internal.streams import _StreamDescriptor, _NativeStream
from pdftools_sdk.internal.native_base import _NativeBase
import pdftools_sdk.internal
[docs]
class Rectangle(Structure):
"""
Attributes:
x (c_double):
y (c_double):
width (c_double):
height (c_double):
"""
_fields_ = [
("x", c_double),
("y", c_double),
("width", c_double),
("height", c_double),
]