-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPageHelper.cs
31 lines (29 loc) · 961 Bytes
/
PageHelper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
namespace PowerBIFileSDK
{
public static class PageHelper
{
public static void PerformActionOnEachPage(string FileLocation, Action<JObject> ActionToPerform)
{
FileHelper.PerformActionOnLayout(
FileLocation,
(JObject Layout) =>
{
JArray PagesArray = (JArray)Layout.SelectToken(JsonPaths.Pages);
foreach (JObject PageObject in PagesArray)
ActionToPerform(PageObject);
}
);
}
public static void RenamePage(JObject PageObject, string PageName)
{
PageObject.SelectToken(JsonPaths.PageDisplayName).Replace(PageName);
}
}
}