لضبط مدة للرمز جديد في SharePoint (المؤشر الذي يظهر بجوار العناصر الجديدة) access the SharePoint WebApplication object and set the value for DaysToShowNewIndicator.
SPWebApplication WebApp = SPWebApplication.Lookup(جديد
Uri(WebAppURL.Text));
WebApp.DaysToShowNewIndicator = 3;
WebApp.Update();
Stevie Widera