Early Access: The content on this website is provided for informational purposes only in connection with pre-General Availability Qlik Products.
All content is subject to change and is provided without warranty.
Skip to main content

Listing sheets in an app

This topic describes how to list the sheets in a Qlik Sense app.

Example: List sheets in a Qlik Sense app

static void Main(string[] args)
{
    // Loading certificates from store assumes that the user executing the program has access to the
    // Qlik certificates in the certificate store.
    var certs = CertificateManager.LoadCertificateFromStore();
    var location = Location.FromUri("https://localhost");
    location.AsDirectConnection("<domain>", "<user>", certs);

    var appId = "<appId>";

    using (var app = location.App(appId))
    {
        var sheetList = app.GetSheetList();
        foreach (var item in sheetList.Layout.AppObjectList.Items)
        {
            Console.WriteLine(item.Data.Title);
        }
    }
}

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!