| 123456789101112131415161718 |
- //
- // System.ComponentModel.RefreshProperties.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.ComponentModel
- {
- [Serializable]
- public enum RefreshProperties {
- All,
- None,
- Repaint
- }
- }
|