File: System\Windows\Forms\Dialogs\TaskDialog\TaskDialogExpanderPosition.cs
Web Access
Project: src\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms;
 
/// <summary>
///  Specifies where the expanded area of the
///  task dialog is to be displayed.
/// </summary>
public enum TaskDialogExpanderPosition : int
{
    /// <summary>
    ///  The expanded area is to be displayed immediately after the
    ///  dialog's text.
    /// </summary>
    AfterText = 0,
 
    /// <summary>
    ///  The expanded area is to be displayed at the bottom of the dialog's
    ///  footnote area.
    /// </summary>
    AfterFootnote = 1
}