Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

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,
}
}