CompareProjectPropertyResult structure
Office 2013 and later
Provides storage for the results of a comparison of two properties.
Namespace: Microsoft.Office.Project.Server.Library
Assembly: Microsoft.Office.Project.Server.Library (in Microsoft.Office.Project.Server.Library.dll)
CompareProjectPropertyResult result = new CompareProjectPropertyResult(); ProjectDataSet projDSet; ProjectDataSet.ProjectRow PRow = projDSet.Project[0]; if (!PRow.IsPROJ_NAMENull()) { result.CompareResult = ProjectPropertyComparator.Compare(PRow.PROJ_NAME, textPropertyValue, compareOperator); result.ValueNotSet = false; }
Show: