e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="VerticalAlign.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.UI.WebControls.WebParts {
|
|
|
|
using System;
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Specifies what properties can be exported from a WebPart.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public enum WebPartExportMode {
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// The Part is not exportable.
|
|
/// </para>
|
|
/// </devdoc>
|
|
None = 0,
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// All properties can be exported.
|
|
/// </para>
|
|
/// </devdoc>
|
|
All = 1,
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Only non-sensitive data can be exported.
|
|
/// </para>
|
|
/// </devdoc>
|
|
NonSensitiveData = 2,
|
|
}
|
|
}
|