//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.ComponentModel {
///
///
/// Specifies identifiers that indicate the nature of
/// the refresh, for use in refreshing the design time view.
///
///
public enum RefreshProperties {
///
/// Indicates to use the no refresh mode.
///
None,
///
/// Indicates to use the refresh all refresh mode.
///
All,
///
/// Indicates to use the repaint refresh mode.
///
Repaint,
}
}