00001 /* ---------------------------------------------------------------------------- 00002 * Microsoft Corporation 00003 * ---------------------------------------------------------------------------- 00004 * Microsoft Project Server mpFx (mpFx) 00005 * ---------------------------------------------------------------------------- 00006 * Author: Colby Africa 00007 * ---------------------------------------------------------------------------- 00008 * License: http://code.msdn.microsoft.com/mpFx/Project/License.aspx 00009 * ---------------------------------------------------------------------------- 00010 */ 00011 00012 namespace Mcs.Epm.MicrosoftProject.mpFx 00013 { 00014 /// <summary> 00015 /// Provides enumerable values for custom field value types 00016 /// </summary> 00017 public enum CustomFieldValueType 00018 { 00019 Text, 00020 Number, 00021 Flag, 00022 Date, 00023 Duration, 00024 None 00025 } 00026 }
1.5.8