docx
    Preparing search index...

    Type Alias ITableWidthProperties

    Properties for specifying table or cell width.

    <xsd:complexType name="CT_TblWidth">
    <xsd:attribute name="w" type="ST_MeasurementOrPercent"/>
    <xsd:attribute name="type" type="ST_TblWidth"/>
    </xsd:complexType>
    type ITableWidthProperties = {
        size: number | Percentage | UniversalMeasure;
        type?: typeof WidthType[keyof typeof WidthType];
    }
    Index

    Properties

    Properties

    size: number | Percentage | UniversalMeasure
    type?: typeof WidthType[keyof typeof WidthType]