Variable ViewSetupHintsSchemaConst

ViewSetupHintsSchema: ZodObject<{
    openingsVisible: ZodBoolean;
    spaceBoundariesVisible: ZodBoolean;
    spacesVisible: ZodBoolean;
}, "strip", ZodTypeAny, {
    openingsVisible: boolean;
    spaceBoundariesVisible: boolean;
    spacesVisible: boolean;
}, {
    openingsVisible: boolean;
    spaceBoundariesVisible: boolean;
    spacesVisible: boolean;
}> = ...

Boolean flags to allow fine control over the visibility of spaces, space boundaries and openings.

A typical use of these flags is when DefaultVisibility=true but spaces, spaces boundaries and openings should remain hidden.

Type declaration

  • openingsVisible: ZodBoolean

    Same as DefaultVisibility but restricted to openings only.

  • spaceBoundariesVisible: ZodBoolean

    Same as DefaultVisibility but restricted to space boundaries only.

  • spacesVisible: ZodBoolean

    Same as DefaultVisibility but restricted to spaces only.

Type declaration

  • openingsVisible: boolean

    Same as DefaultVisibility but restricted to openings only.

  • spaceBoundariesVisible: boolean

    Same as DefaultVisibility but restricted to space boundaries only.

  • spacesVisible: boolean

    Same as DefaultVisibility but restricted to spaces only.

Type declaration

  • openingsVisible: boolean

    Same as DefaultVisibility but restricted to openings only.

  • spaceBoundariesVisible: boolean

    Same as DefaultVisibility but restricted to space boundaries only.

  • spacesVisible: boolean

    Same as DefaultVisibility but restricted to spaces only.

Generated using TypeDoc