Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface ObjectPageSection

    Describes a section within an Object Page layout.

    const s: ObjectPageSection = { id: 'sec1', title: 'General', visible: true, index: 0, subSections: [] };
    
    interface ObjectPageSection {
        id: string;
        index: number;
        subSections: readonly { id: string; title: string }[];
        title: string;
        visible: boolean;
    }
    Index

    Properties

    id: string
    index: number
    subSections: readonly { id: string; title: string }[]
    title: string
    visible: boolean