How to change ‘Number of items to display’ for a Sharepoint list view programmactially 2013 or Office 365?
Hello SharePointers, In this blog, we will discuss about how to change the number of items to display in a SharePoint list view using CSOM . Below is the CSOM code to achieve the same. Rowlimit is the property that we need to set it up. public static void RowLimit(Web web, string listTitle,string viewTitle,int rowLimit) { […]