diff --git a/.github/workflows/admin-sample.cd.yml b/.github/workflows/admin-sample.cd.yml index 8e460427b1..3f9ed1b6e3 100644 --- a/.github/workflows/admin-sample.cd.yml +++ b/.github/workflows/admin-sample.cd.yml @@ -165,7 +165,7 @@ jobs: echo A | xcopy .\bin\publish-x64 .\publish-result /s /e /h echo A | xcopy .\bin\publish .\publish-result /s /e /h dotnet tool restore - dotnet vpk pack -u AdminPanel.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e AdminPanel.Client.Windows-x64.exe -r win-x64 --framework net8.0.1-x64-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle 'AdminPanel' + dotnet vpk pack -u AdminPanel.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e AdminPanel.Client.Windows-x86.exe -r win-x86 --framework net8.0.1-x86-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle 'AdminPanel' - name: Upload artifact uses: actions/upload-artifact@v2 diff --git a/.github/workflows/bit.full.ci.yml b/.github/workflows/bit.full.ci.yml index 39a9b3eba6..6950f648ea 100644 --- a/.github/workflows/bit.full.ci.yml +++ b/.github/workflows/bit.full.ci.yml @@ -47,6 +47,11 @@ jobs: dotnet new bit-bp --name EmptyBP --database other --sample none --pipeline azure --offlineDb --windows dotnet build EmptyBP/EmptyBP.sln -c Release -p:RunAOTCompilation=false -p:EnableWindowsTargeting=true + - name: Release build empty sample without api + run: | + dotnet new bit-bp --name ApiFalse --database other --sample none --pipeline azure --api false + dotnet build ApiFalse/ApiFalse.sln -c Release -p:RunAOTCompilation=false -p:EnableWindowsTargeting=true + - name: Release build admin panel sample + SqlServer database run: | dotnet new bit-bp --name AdminBPSqlServer --database sqlserver --sample admin --pipeline github diff --git a/.github/workflows/blazorui.demo.cd.yml b/.github/workflows/blazorui.demo.cd.yml index d3e57d87ea..df87333975 100644 --- a/.github/workflows/blazorui.demo.cd.yml +++ b/.github/workflows/blazorui.demo.cd.yml @@ -132,7 +132,7 @@ jobs: echo A | xcopy .\bin\publish-x64 .\publish-result /s /e /h echo A | xcopy .\bin\publish .\publish-result /s /e /h dotnet tool restore - dotnet vpk pack -u Bit.BlazorUI.Demo.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e Bit.BlazorUI.Demo.Client.Windows-x64.exe -r win-x64 --framework net8.0.1-x64-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle 'Bit Blazor UI' + dotnet vpk pack -u Bit.BlazorUI.Demo.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e Bit.BlazorUI.Demo.Client.Windows-x86.exe -r win-x86 --framework net8.0.1-x86-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle 'Bit Blazor UI' - name: Upload artifact uses: actions/upload-artifact@v2 diff --git a/.github/workflows/todo-sample.cd.yml b/.github/workflows/todo-sample.cd.yml index e9bfd7d4fa..323e6aaaf2 100644 --- a/.github/workflows/todo-sample.cd.yml +++ b/.github/workflows/todo-sample.cd.yml @@ -56,7 +56,7 @@ jobs: sed -i 's/Auto;/BlazorWebAssembly;/g' TodoSample/src/Client/TodoSample.Client.Core/Services/AppRenderMode.cs - name: Changes for static-todo.bitplatform.dev - Part 1 - run: sed -i 's/http:\/\/localhost:4030/https:\/\/static-todo.bitplatform.dev/g' TodoSample/src/TodoSample.Server/Startup/Middlewares.cs + run: sed -i 's/http:\/\/localhost:4030/https:\/\/static-todo.bitplatform.dev/g' TodoSample/src/TodoSample.Server/Program.Middlewares.cs - name: Generate CSS/JS files run: dotnet build TodoSample/src/Client/TodoSample.Client.Core/TodoSample.Client.Core.csproj -t:BeforeBuildTasks --no-restore @@ -180,7 +180,7 @@ jobs: echo A | xcopy .\bin\publish-x64 .\publish-result /s /e /h echo A | xcopy .\bin\publish .\publish-result /s /e /h dotnet tool restore - dotnet vpk pack -u TodoSample.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e TodoSample.Client.Windows-x64.exe -r win-x64 --framework net8.0.1-x64-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle TodoSample + dotnet vpk pack -u TodoSample.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e TodoSample.Client.Windows-x86.exe -r win-x86 --framework net8.0.1-x86-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle TodoSample - name: Upload artifact uses: actions/upload-artifact@v2 diff --git a/README.md b/README.md index 05e907fc6f..f21dc24f82 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ ![CI Status](https://github.com/bitfoundation/bitplatform/actions/workflows/bit.ci.yml/badge.svg) ![NuGet version](https://img.shields.io/nuget/v/bit.blazorui.svg?logo=nuget) [![Nuget downloads](https://img.shields.io/badge/packages_download-4.4M-blue.svg?logo=nuget)](https://www.nuget.org/profiles/bit-foundation) +[![](https://dcbadge.vercel.app/api/server/7bNMRNYshd?style=flat-square&compact=true&v=2)](https://discord.gg/7bNMRNYshd)
diff --git a/src/Besql/Demo/Bit.Besql.Demo.Client/Bit.Besql.Demo.Client.csproj b/src/Besql/Demo/Bit.Besql.Demo.Client/Bit.Besql.Demo.Client.csproj index 1119460d81..0c6ae3786a 100644 --- a/src/Besql/Demo/Bit.Besql.Demo.Client/Bit.Besql.Demo.Client.csproj +++ b/src/Besql/Demo/Bit.Besql.Demo.Client/Bit.Besql.Demo.Client.csproj @@ -6,6 +6,7 @@ enable true Default + true diff --git a/src/Bit-CI.sln b/src/Bit-CI.sln index 64c82bdd69..f8fc19dfda 100644 --- a/src/Bit-CI.sln +++ b/src/Bit-CI.sln @@ -232,7 +232,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bit.Bswup.NewDemo", "Bswup\ EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bit.Bswup.NewDemo.Client", "Bswup\Bit.Bswup.NewDemo\Bit.Bswup.NewDemo.Client\Bit.Bswup.NewDemo.Client.csproj", "{610E87D1-63A1-4D78-BA84-6E90DDDCF138}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bit.BlazorUI.Demo.Client.Windows", "..\..\bitplatform\src\BlazorUI\Demo\Client\Bit.BlazorUI.Demo.Client.Windows\Bit.BlazorUI.Demo.Client.Windows.csproj", "{62F75EFA-BF6D-4B61-8CA9-6E071806827B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bit.BlazorUI.Demo.Client.Windows", "BlazorUI\Demo\Client\Bit.BlazorUI.Demo.Client.Windows\Bit.BlazorUI.Demo.Client.Windows.csproj", "{62F75EFA-BF6D-4B61-8CA9-6E071806827B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Boilerplate.Client.Windows", "Templates\Boilerplate\Bit.Boilerplate\src\Client\Boilerplate.Client.Windows\Boilerplate.Client.Windows.csproj", "{5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -1209,6 +1211,26 @@ Global {62F75EFA-BF6D-4B61-8CA9-6E071806827B}.Release|x64.Build.0 = Release|Any CPU {62F75EFA-BF6D-4B61-8CA9-6E071806827B}.Release|x86.ActiveCfg = Release|Any CPU {62F75EFA-BF6D-4B61-8CA9-6E071806827B}.Release|x86.Build.0 = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|iPhone.Build.0 = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|x64.ActiveCfg = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|x64.Build.0 = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|x86.ActiveCfg = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Debug|x86.Build.0 = Debug|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|Any CPU.Build.0 = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|iPhone.ActiveCfg = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|iPhone.Build.0 = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|iPhoneSimulator.Build.0 = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|x64.ActiveCfg = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|x64.Build.0 = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|x86.ActiveCfg = Release|Any CPU + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -1277,6 +1299,7 @@ Global {A572BB00-354D-4C66-8DE1-946C96CA4172} = {C6EBC527-A489-44B4-A951-D023107A577F} {610E87D1-63A1-4D78-BA84-6E90DDDCF138} = {C6EBC527-A489-44B4-A951-D023107A577F} {62F75EFA-BF6D-4B61-8CA9-6E071806827B} = {D7242830-A91D-4729-BF2D-B1E7E141953E} + {5021C89A-8AB8-4345-B8C4-E1B4F1F20BE7} = {EEAF80AE-EC5F-4E55-BD4D-CE7075D67C90} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {DA107107-478F-477A-872B-787CEA7DD9B8} diff --git a/src/Bit.Build.props b/src/Bit.Build.props index 1e07c6d960..abb1bc0a04 100644 --- a/src/Bit.Build.props +++ b/src/Bit.Build.props @@ -25,7 +25,7 @@ https://github.com/bitfoundation/bitplatform https://avatars.githubusercontent.com/u/22663390 - 8.7.4 + 8.7.5 https://github.com/bitfoundation/bitplatform/releases/tag/v-$(ReleaseVersion) $(ReleaseVersion) diff --git a/src/BlazorUI/Bit.BlazorUI.Icons/BitIconName.cs b/src/BlazorUI/Bit.BlazorUI.Icons/BitIconName.cs index e246a71f9f..f62e1f62da 100644 --- a/src/BlazorUI/Bit.BlazorUI.Icons/BitIconName.cs +++ b/src/BlazorUI/Bit.BlazorUI.Icons/BitIconName.cs @@ -4,2317 +4,2317 @@ namespace Bit.BlazorUI; public static class BitIconName { - public static string _12PointStar = "12PointStar"; - public static string _6PointStar = "6PointStar"; - public static string AADLogo = nameof(AADLogo); - public static string Accept = nameof(Accept); - public static string AcceptMedium = nameof(AcceptMedium); - public static string AccessibilityChecker = nameof(AccessibilityChecker); - public static string AccessLogo = nameof(AccessLogo); - public static string AccountActivity = nameof(AccountActivity); - public static string AccountBrowser = nameof(AccountBrowser); - public static string AccountManagement = nameof(AccountManagement); - public static string Accounts = nameof(Accounts); - public static string ActionCenter = nameof(ActionCenter); - public static string ActivateOrders = nameof(ActivateOrders); - public static string ActivityFeed = nameof(ActivityFeed); - public static string Add = nameof(Add); - public static string AddBookmark = nameof(AddBookmark); - public static string AddConnection = nameof(AddConnection); - public static string AddEvent = nameof(AddEvent); - public static string AddFavorite = nameof(AddFavorite); - public static string AddFavoriteFill = nameof(AddFavoriteFill); - public static string AddField = nameof(AddField); - public static string AddFriend = nameof(AddFriend); - public static string AddGroup = nameof(AddGroup); - public static string AddHome = nameof(AddHome); - public static string AddIn = nameof(AddIn); - public static string AddLink = nameof(AddLink); - public static string AddMedium = nameof(AddMedium); - public static string AddMultiple = nameof(AddMultiple); - public static string AddNotes = nameof(AddNotes); - public static string AddOnlineMeeting = nameof(AddOnlineMeeting); - public static string AddPhone = nameof(AddPhone); - public static string AddReaction = nameof(AddReaction); - public static string AddSpaceAfter = nameof(AddSpaceAfter); - public static string AddSpaceBefore = nameof(AddSpaceBefore); - public static string AddTable = nameof(AddTable); - public static string AddTo = nameof(AddTo); - public static string AddToShoppingList = nameof(AddToShoppingList); - public static string AddWork = nameof(AddWork); - public static string Admin = nameof(Admin); - public static string AdminALogo32 = nameof(AdminALogo32); - public static string AdminALogoFill32 = nameof(AdminALogoFill32); - public static string AdminALogoInverse32 = nameof(AdminALogoInverse32); - public static string AdminCLogoInverse32 = nameof(AdminCLogoInverse32); - public static string AdminDLogoInverse32 = nameof(AdminDLogoInverse32); - public static string AdminELogoInverse32 = nameof(AdminELogoInverse32); - public static string AdminLLogoInverse32 = nameof(AdminLLogoInverse32); - public static string AdminMLogoInverse32 = nameof(AdminMLogoInverse32); - public static string AdminOLogoInverse32 = nameof(AdminOLogoInverse32); - public static string AdminPLogoInverse32 = nameof(AdminPLogoInverse32); - public static string AdminSLogoInverse32 = nameof(AdminSLogoInverse32); - public static string AdminYLogoInverse32 = nameof(AdminYLogoInverse32); - public static string Airplane = nameof(Airplane); - public static string AirplaneSolid = nameof(AirplaneSolid); - public static string AirTickets = nameof(AirTickets); - public static string AlarmClock = nameof(AlarmClock); - public static string Album = nameof(Album); - public static string AlbumRemove = nameof(AlbumRemove); - public static string AlertSettings = nameof(AlertSettings); - public static string AlertSolid = nameof(AlertSolid); - public static string AlignCenter = nameof(AlignCenter); - public static string AlignHorizontalCenter = nameof(AlignHorizontalCenter); - public static string AlignHorizontalLeft = nameof(AlignHorizontalLeft); - public static string AlignHorizontalRight = nameof(AlignHorizontalRight); - public static string AlignJustify = nameof(AlignJustify); - public static string AlignLeft = nameof(AlignLeft); - public static string AlignRight = nameof(AlignRight); - public static string AlignVerticalBottom = nameof(AlignVerticalBottom); - public static string AlignVerticalCenter = nameof(AlignVerticalCenter); - public static string AlignVerticalTop = nameof(AlignVerticalTop); - public static string AllApps = nameof(AllApps); - public static string AllAppsMirrored = nameof(AllAppsMirrored); - public static string AllCurrency = nameof(AllCurrency); - public static string AltText = nameof(AltText); - public static string AnalyticsLogo = nameof(AnalyticsLogo); - public static string AnalyticsQuery = nameof(AnalyticsQuery); - public static string AnalyticsReport = nameof(AnalyticsReport); - public static string AnalyticsView = nameof(AnalyticsView); - public static string AnchorLock = nameof(AnchorLock); - public static string Annotation = nameof(Annotation); - public static string AppIconDefault = nameof(AppIconDefault); - public static string AppIconDefaultAdd = nameof(AppIconDefaultAdd); - public static string AppIconDefaultEdit = nameof(AppIconDefaultEdit); - public static string AppIconDefaultList = nameof(AppIconDefaultList); - public static string AppIconSecure = nameof(AppIconSecure); - public static string AppsContent = nameof(AppsContent); - public static string Archive = nameof(Archive); - public static string ArchiveUndo = nameof(ArchiveUndo); - public static string AreaChart = nameof(AreaChart); - public static string ArrangeBringForward = nameof(ArrangeBringForward); - public static string ArrangeBringToFront = nameof(ArrangeBringToFront); - public static string ArrangeByFrom = nameof(ArrangeByFrom); - public static string ArrangeSendBackward = nameof(ArrangeSendBackward); - public static string ArrangeSendToBack = nameof(ArrangeSendToBack); - public static string Arrivals = nameof(Arrivals); - public static string ArrowDownRight8 = nameof(ArrowDownRight8); - public static string ArrowDownRightMirrored8 = nameof(ArrowDownRightMirrored8); - public static string ArrowTallDownLeft = nameof(ArrowTallDownLeft); - public static string ArrowTallDownRight = nameof(ArrowTallDownRight); - public static string ArrowTallUpLeft = nameof(ArrowTallUpLeft); - public static string ArrowTallUpRight = nameof(ArrowTallUpRight); - public static string ArrowUpRight = nameof(ArrowUpRight); - public static string ArrowUpRight8 = nameof(ArrowUpRight8); - public static string ArrowUpRightMirrored8 = nameof(ArrowUpRightMirrored8); - public static string Articles = nameof(Articles); - public static string Ascending = nameof(Ascending); - public static string AspectRatio = nameof(AspectRatio); - public static string AssessmentGroup = nameof(AssessmentGroup); - public static string AssessmentGroupTemplate = nameof(AssessmentGroupTemplate); - public static string AssetLibrary = nameof(AssetLibrary); - public static string Assign = nameof(Assign); - public static string AssignPolicy = nameof(AssignPolicy); - public static string Asterisk = nameof(Asterisk); - public static string AsteriskSolid = nameof(AsteriskSolid); - public static string ATPLogo = nameof(ATPLogo); - public static string Attach = nameof(Attach); - public static string AustralianRules = nameof(AustralianRules); - public static string AuthenticatorApp = nameof(AuthenticatorApp); - public static string AutoDeploySettings = nameof(AutoDeploySettings); - public static string AutoEnhanceOff = nameof(AutoEnhanceOff); - public static string AutoEnhanceOn = nameof(AutoEnhanceOn); - public static string AutoFillTemplate = nameof(AutoFillTemplate); - public static string AutoFitContents = nameof(AutoFitContents); - public static string AutoFitWindow = nameof(AutoFitWindow); - public static string AutoHeight = nameof(AutoHeight); - public static string AutomateFlow = nameof(AutomateFlow); - public static string AutoRacing = nameof(AutoRacing); - public static string AwayStatus = nameof(AwayStatus); - public static string AzureAPIManagement = nameof(AzureAPIManagement); - public static string AzureDataExplorer = nameof(AzureDataExplorer); - public static string AzureIcon = nameof(AzureIcon); - public static string AzureKeyVault = nameof(AzureKeyVault); - public static string AzureServiceEndpoint = nameof(AzureServiceEndpoint); - public static string Back = nameof(Back); - public static string BackgroundColor = nameof(BackgroundColor); - public static string Backlog = nameof(Backlog); - public static string BacklogBoard = nameof(BacklogBoard); - public static string BacklogList = nameof(BacklogList); - public static string BackToWindow = nameof(BackToWindow); - public static string Badge = nameof(Badge); - public static string Balloons = nameof(Balloons); - public static string Bank = nameof(Bank); - public static string BankSolid = nameof(BankSolid); - public static string BarChart3 = nameof(BarChart3); - public static string BarChart3One = nameof(BarChart3One); - public static string BarChart3Two = nameof(BarChart3Two); - public static string BarChart3Zero = nameof(BarChart3Zero); - public static string BarChart4 = nameof(BarChart4); - public static string BarChartHorizontal = nameof(BarChartHorizontal); - public static string BarChartVertical = nameof(BarChartVertical); - public static string BarChartVerticalEdit = nameof(BarChartVerticalEdit); - public static string BarChartVerticalFill = nameof(BarChartVerticalFill); - public static string BarChartVerticalFilter = nameof(BarChartVerticalFilter); - public static string BarChartVerticalFilterSolid = nameof(BarChartVerticalFilterSolid); - public static string Baseball = nameof(Baseball); - public static string BeerMug = nameof(BeerMug); - public static string BIDashboard = nameof(BIDashboard); - public static string BidiLtr = nameof(BidiLtr); - public static string Bidirectional = nameof(Bidirectional); - public static string BidiRtl = nameof(BidiRtl); - public static string Bill = nameof(Bill); - public static string BingLogo = nameof(BingLogo); - public static string BirthdayCake = nameof(BirthdayCake); - public static string BlobStorage = nameof(BlobStorage); - public static string BlockContact = nameof(BlockContact); - public static string Blocked = nameof(Blocked); - public static string Blocked12 = nameof(Blocked12); - public static string Blocked2 = nameof(Blocked2); - public static string Blocked2Solid = nameof(Blocked2Solid); - public static string BlockedSite = nameof(BlockedSite); - public static string BlockedSiteSolid12 = nameof(BlockedSiteSolid12); - public static string BlockedSolid = nameof(BlockedSolid); - public static string Blog = nameof(Blog); - public static string BlowingSnow = nameof(BlowingSnow); - public static string Blur = nameof(Blur); - public static string Boards = nameof(Boards); - public static string Bold = nameof(Bold); - public static string BoldBulgarian = nameof(BoldBulgarian); - public static string BoldF = nameof(BoldF); - public static string BoldG = nameof(BoldG); - public static string BoldK = nameof(BoldK); - public static string BoldKazakh = nameof(BoldKazakh); - public static string BoldKorean = nameof(BoldKorean); - public static string BoldN = nameof(BoldN); - public static string BoldP = nameof(BoldP); - public static string BoldRussion = nameof(BoldRussion); - public static string BoldSerbian = nameof(BoldSerbian); - public static string BoldT = nameof(BoldT); - public static string BookAnswers = nameof(BookAnswers); - public static string BookingsLogo = nameof(BookingsLogo); - public static string BookmarkReport = nameof(BookmarkReport); - public static string Bookmarks = nameof(Bookmarks); - public static string BookmarksMirrored = nameof(BookmarksMirrored); - public static string BooleanData = nameof(BooleanData); - public static string BorderAll = nameof(BorderAll); - public static string BorderDash = nameof(BorderDash); - public static string BorderDot = nameof(BorderDot); - public static string BorderInside = nameof(BorderInside); - public static string BorderInsideHorizontal = nameof(BorderInsideHorizontal); - public static string BorderInsideVertical = nameof(BorderInsideVertical); - public static string BorderNone = nameof(BorderNone); - public static string BoxAdditionSolid = nameof(BoxAdditionSolid); - public static string BoxCheckmarkSolid = nameof(BoxCheckmarkSolid); - public static string BoxMultiplySolid = nameof(BoxMultiplySolid); - public static string BoxPlaySolid = nameof(BoxPlaySolid); - public static string BoxSubtractSolid = nameof(BoxSubtractSolid); - public static string BranchCommit = nameof(BranchCommit); - public static string BranchCompare = nameof(BranchCompare); - public static string BranchFork = nameof(BranchFork); - public static string BranchFork2 = nameof(BranchFork2); - public static string BranchLocked = nameof(BranchLocked); - public static string BranchMerge = nameof(BranchMerge); - public static string BranchPullRequest = nameof(BranchPullRequest); - public static string BranchSearch = nameof(BranchSearch); - public static string BranchShelveset = nameof(BranchShelveset); - public static string Breadcrumb = nameof(Breadcrumb); - public static string Breakfast = nameof(Breakfast); - public static string BreakpointsRemove = nameof(BreakpointsRemove); - public static string Brightness = nameof(Brightness); - public static string Broom = nameof(Broom); - public static string BrowserScreenShot = nameof(BrowserScreenShot); - public static string BrowserTab = nameof(BrowserTab); - public static string BrowserTabScreenshot = nameof(BrowserTabScreenshot); - public static string Brunch = nameof(Brunch); - public static string Brush = nameof(Brush); - public static string BucketColor = nameof(BucketColor); - public static string BucketColorFill = nameof(BucketColorFill); - public static string BufferTimeAfter = nameof(BufferTimeAfter); - public static string BufferTimeBefore = nameof(BufferTimeBefore); - public static string BufferTimeBoth = nameof(BufferTimeBoth); - public static string Bug = nameof(Bug); - public static string BugAction = nameof(BugAction); - public static string BugBlock = nameof(BugBlock); - public static string BugSolid = nameof(BugSolid); - public static string BugSync = nameof(BugSync); - public static string BugWarning = nameof(BugWarning); - public static string Build = nameof(Build); - public static string BuildDefinition = nameof(BuildDefinition); - public static string BuildIssue = nameof(BuildIssue); - public static string BuildQueue = nameof(BuildQueue); - public static string BuildQueueNew = nameof(BuildQueueNew); - public static string BulkPageBlock = nameof(BulkPageBlock); - public static string BulkUpload = nameof(BulkUpload); - public static string BulletedList = nameof(BulletedList); - public static string BulletedList2 = nameof(BulletedList2); - public static string BulletedList2Mirrored = nameof(BulletedList2Mirrored); - public static string BulletedListBullet = nameof(BulletedListBullet); - public static string BulletedListBulletMirrored = nameof(BulletedListBulletMirrored); - public static string BulletedListMirrored = nameof(BulletedListMirrored); - public static string BulletedListText = nameof(BulletedListText); - public static string BulletedListTextMirrored = nameof(BulletedListTextMirrored); - public static string BulletedTreeList = nameof(BulletedTreeList); - public static string Bullseye = nameof(Bullseye); - public static string BullseyeTarget = nameof(BullseyeTarget); - public static string BullseyeTargetAdd = nameof(BullseyeTargetAdd); - public static string BullseyeTargetDelete = nameof(BullseyeTargetDelete); - public static string BullseyeTargetEdit = nameof(BullseyeTargetEdit); - public static string Bus = nameof(Bus); - public static string BusinessCard = nameof(BusinessCard); - public static string BusinessCenterLogo = nameof(BusinessCenterLogo); - public static string BusinessHoursSign = nameof(BusinessHoursSign); - public static string BusinessRule = nameof(BusinessRule); - public static string BusSolid = nameof(BusSolid); - public static string ButtonControl = nameof(ButtonControl); - public static string Cafe = nameof(Cafe); - public static string Cake = nameof(Cake); - public static string CalculatedTable = nameof(CalculatedTable); - public static string Calculator = nameof(Calculator); - public static string CalculatorAddition = nameof(CalculatorAddition); - public static string CalculatorDelta = nameof(CalculatorDelta); - public static string CalculatorEqualTo = nameof(CalculatorEqualTo); - public static string CalculatorGroup = nameof(CalculatorGroup); - public static string CalculatorMultiply = nameof(CalculatorMultiply); - public static string CalculatorNotEqualTo = nameof(CalculatorNotEqualTo); - public static string CalculatorPercentage = nameof(CalculatorPercentage); - public static string CalculatorSubtract = nameof(CalculatorSubtract); - public static string Calendar = nameof(Calendar); - public static string CalendarAgenda = nameof(CalendarAgenda); - public static string CalendarDay = nameof(CalendarDay); - public static string CalendarMirrored = nameof(CalendarMirrored); - public static string CalendarReply = nameof(CalendarReply); - public static string CalendarSettings = nameof(CalendarSettings); - public static string CalendarSettingsMirrored = nameof(CalendarSettingsMirrored); - public static string CalendarWeek = nameof(CalendarWeek); - public static string CalendarWorkWeek = nameof(CalendarWorkWeek); - public static string CalendarYear = nameof(CalendarYear); - public static string Calories = nameof(Calories); - public static string CaloriesAdd = nameof(CaloriesAdd); - public static string Camera = nameof(Camera); - public static string CampaignTemplate = nameof(CampaignTemplate); - public static string Cancel = nameof(Cancel); - public static string CannedChat = nameof(CannedChat); - public static string CanvasAppTemplate32 = nameof(CanvasAppTemplate32); - public static string Car = nameof(Car); - public static string CareActivity = nameof(CareActivity); - public static string CarePlan = nameof(CarePlan); - public static string CarePlanTemplate = nameof(CarePlanTemplate); - public static string CaretBottomLeftCenter8 = nameof(CaretBottomLeftCenter8); - public static string CaretBottomLeftSolid8 = nameof(CaretBottomLeftSolid8); - public static string CaretBottomRightCenter8 = nameof(CaretBottomRightCenter8); - public static string CaretBottomRightSolid8 = nameof(CaretBottomRightSolid8); - public static string CaretDown8 = nameof(CaretDown8); - public static string CaretDownSolid8 = nameof(CaretDownSolid8); - public static string CaretHollow = nameof(CaretHollow); - public static string CaretHollowMirrored = nameof(CaretHollowMirrored); - public static string CaretLeft8 = nameof(CaretLeft8); - public static string CaretLeftSolid8 = nameof(CaretLeftSolid8); - public static string CaretRight = nameof(CaretRight); - public static string CaretRight8 = nameof(CaretRight8); - public static string CaretRightSolid8 = nameof(CaretRightSolid8); - public static string CaretSolid = nameof(CaretSolid); - public static string CaretSolid16 = nameof(CaretSolid16); - public static string CaretSolidAlt = nameof(CaretSolidAlt); - public static string CaretSolidDown = nameof(CaretSolidDown); - public static string CaretSolidLeft = nameof(CaretSolidLeft); - public static string CaretSolidMirrored = nameof(CaretSolidMirrored); - public static string CaretSolidRight = nameof(CaretSolidRight); - public static string CaretSolidUp = nameof(CaretSolidUp); - public static string CaretTopLeftCenter8 = nameof(CaretTopLeftCenter8); - public static string CaretTopLeftSolid8 = nameof(CaretTopLeftSolid8); - public static string CaretTopRightCenter8 = nameof(CaretTopRightCenter8); - public static string CaretTopRightSolid8 = nameof(CaretTopRightSolid8); - public static string CaretUp8 = nameof(CaretUp8); - public static string CaretUpSolid8 = nameof(CaretUpSolid8); - public static string CaseSetting = nameof(CaseSetting); - public static string Cat = nameof(Cat); - public static string CategoryClassification = nameof(CategoryClassification); - public static string CC = nameof(CC); - public static string CCSolid = nameof(CCSolid); - public static string CellPhone = nameof(CellPhone); - public static string CellSplitVertical = nameof(CellSplitVertical); - public static string Certificate = nameof(Certificate); - public static string CertifiedDatabase = nameof(CertifiedDatabase); - public static string ChangeEntitlements = nameof(ChangeEntitlements); - public static string Chart = nameof(Chart); - public static string CharticulatorArrangePolar = nameof(CharticulatorArrangePolar); - public static string CharticulatorArrangePolarAngles = nameof(CharticulatorArrangePolarAngles); - public static string CharticulatorBand = nameof(CharticulatorBand); - public static string CharticulatorGuideCoordinator = nameof(CharticulatorGuideCoordinator); - public static string CharticulatorGuideX = nameof(CharticulatorGuideX); - public static string CharticulatorGuideY = nameof(CharticulatorGuideY); - public static string CharticulatorLegend = nameof(CharticulatorLegend); - public static string CharticulatorLine = nameof(CharticulatorLine); - public static string CharticulatorLineStyleDashed = nameof(CharticulatorLineStyleDashed); - public static string CharticulatorLineStyleDotted = nameof(CharticulatorLineStyleDotted); - public static string CharticulatorLinkingData = nameof(CharticulatorLinkingData); - public static string CharticulatorLinkingSequence = nameof(CharticulatorLinkingSequence); - public static string CharticulatorOrderColumn = nameof(CharticulatorOrderColumn); - public static string CharticulatorOrderRow = nameof(CharticulatorOrderRow); - public static string CharticulatorPlotCartesian = nameof(CharticulatorPlotCartesian); - public static string CharticulatorPlotCurve = nameof(CharticulatorPlotCurve); - public static string CharticulatorPolarCoordinates = nameof(CharticulatorPolarCoordinates); - public static string CharticulatorSpiral = nameof(CharticulatorSpiral); - public static string CharticulatorStackRadial = nameof(CharticulatorStackRadial); - public static string CharticulatorStackY = nameof(CharticulatorStackY); - public static string ChartSeries = nameof(ChartSeries); - public static string ChartTemplate = nameof(ChartTemplate); - public static string ChartXAngle = nameof(ChartXAngle); - public static string ChartYAngle = nameof(ChartYAngle); - public static string Chat = nameof(Chat); - public static string ChatBot = nameof(ChatBot); - public static string ChatInviteFriend = nameof(ChatInviteFriend); - public static string ChatSettings = nameof(ChatSettings); - public static string ChatSolid = nameof(ChatSolid); - public static string Checkbox = nameof(Checkbox); - public static string CheckboxComposite = nameof(CheckboxComposite); - public static string CheckboxCompositeReversed = nameof(CheckboxCompositeReversed); - public static string CheckboxFill = nameof(CheckboxFill); - public static string CheckboxIndeterminate = nameof(CheckboxIndeterminate); - public static string CheckboxIndeterminateCombo = nameof(CheckboxIndeterminateCombo); - public static string CheckedOutByOther12 = nameof(CheckedOutByOther12); - public static string CheckedOutByYou12 = nameof(CheckedOutByYou12); - public static string CheckList = nameof(CheckList); - public static string CheckListCheck = nameof(CheckListCheck); - public static string CheckListCheckMirrored = nameof(CheckListCheckMirrored); - public static string CheckListText = nameof(CheckListText); - public static string CheckListTextMirrored = nameof(CheckListTextMirrored); - public static string CheckMark = nameof(CheckMark); - public static string ChevronDown = nameof(ChevronDown); - public static string ChevronDownEnd = nameof(ChevronDownEnd); - public static string ChevronDownEnd6 = nameof(ChevronDownEnd6); - public static string ChevronDownMed = nameof(ChevronDownMed); - public static string ChevronDownSmall = nameof(ChevronDownSmall); - public static string ChevronFold10 = nameof(ChevronFold10); - public static string ChevronLeft = nameof(ChevronLeft); - public static string ChevronLeftEnd6 = nameof(ChevronLeftEnd6); - public static string ChevronLeftMed = nameof(ChevronLeftMed); - public static string ChevronLeftSmall = nameof(ChevronLeftSmall); - public static string ChevronRight = nameof(ChevronRight); - public static string ChevronRightEnd6 = nameof(ChevronRightEnd6); - public static string ChevronRightMed = nameof(ChevronRightMed); - public static string ChevronRightSmall = nameof(ChevronRightSmall); - public static string ChevronUnfold10 = nameof(ChevronUnfold10); - public static string ChevronUp = nameof(ChevronUp); - public static string ChevronUpEnd = nameof(ChevronUpEnd); - public static string ChevronUpEnd6 = nameof(ChevronUpEnd6); - public static string ChevronUpMed = nameof(ChevronUpMed); - public static string ChevronUpSmall = nameof(ChevronUpSmall); - public static string ChildOf = nameof(ChildOf); - public static string ChoiceColumn = nameof(ChoiceColumn); - public static string Chopsticks = nameof(Chopsticks); - public static string ChromeBack = nameof(ChromeBack); - public static string ChromeBackMirrored = nameof(ChromeBackMirrored); - public static string ChromeClose = nameof(ChromeClose); - public static string ChromeFullScreen = nameof(ChromeFullScreen); - public static string ChromeMinimize = nameof(ChromeMinimize); - public static string ChromeRestore = nameof(ChromeRestore); - public static string CircleAddition = nameof(CircleAddition); - public static string CircleAdditionSolid = nameof(CircleAdditionSolid); - public static string CircleDollar = nameof(CircleDollar); - public static string CircleFill = nameof(CircleFill); - public static string CircleHalfFull = nameof(CircleHalfFull); - public static string CirclePause = nameof(CirclePause); - public static string CirclePauseSolid = nameof(CirclePauseSolid); - public static string CirclePlus = nameof(CirclePlus); - public static string CircleRing = nameof(CircleRing); - public static string CircleShape = nameof(CircleShape); - public static string CircleShapeSolid = nameof(CircleShapeSolid); - public static string CircleStop = nameof(CircleStop); - public static string CircleStopSolid = nameof(CircleStopSolid); - public static string CityNext = nameof(CityNext); - public static string CityNext2 = nameof(CityNext2); - public static string ClassNotebookLogo16 = nameof(ClassNotebookLogo16); - public static string ClassNotebookLogo32 = nameof(ClassNotebookLogo32); - public static string ClassNotebookLogoFill16 = nameof(ClassNotebookLogoFill16); - public static string ClassNotebookLogoFill32 = nameof(ClassNotebookLogoFill32); - public static string ClassNotebookLogoInverse = nameof(ClassNotebookLogoInverse); - public static string ClassNotebookLogoInverse16 = nameof(ClassNotebookLogoInverse16); - public static string ClassNotebookLogoInverse32 = nameof(ClassNotebookLogoInverse32); - public static string ClassroomLogo = nameof(ClassroomLogo); - public static string Clear = nameof(Clear); - public static string ClearFilter = nameof(ClearFilter); - public static string ClearFormatting = nameof(ClearFormatting); - public static string ClearFormattingA = nameof(ClearFormattingA); - public static string ClearFormattingEraser = nameof(ClearFormattingEraser); - public static string ClearNight = nameof(ClearNight); - public static string ClearSelection = nameof(ClearSelection); - public static string ClearSelectionMirrored = nameof(ClearSelectionMirrored); - public static string Clicked = nameof(Clicked); - public static string ClinicalImpression = nameof(ClinicalImpression); - public static string Clipboard = nameof(Clipboard); - public static string ClipboardList = nameof(ClipboardList); - public static string ClipboardListAdd = nameof(ClipboardListAdd); - public static string ClipboardListMirrored = nameof(ClipboardListMirrored); - public static string ClipboardListQuestion = nameof(ClipboardListQuestion); - public static string ClipboardListReply = nameof(ClipboardListReply); - public static string ClipboardSolid = nameof(ClipboardSolid); - public static string Clock = nameof(Clock); - public static string CloneToDesktop = nameof(CloneToDesktop); - public static string ClosedCaption = nameof(ClosedCaption); - public static string ClosePane = nameof(ClosePane); - public static string ClosePaneMirrored = nameof(ClosePaneMirrored); - public static string Cloud = nameof(Cloud); - public static string CloudAdd = nameof(CloudAdd); - public static string CloudDownload = nameof(CloudDownload); - public static string CloudEdit = nameof(CloudEdit); - public static string CloudFlow = nameof(CloudFlow); - public static string CloudImportExport = nameof(CloudImportExport); - public static string CloudLink = nameof(CloudLink); - public static string CloudNotSynced = nameof(CloudNotSynced); - public static string CloudPrinter = nameof(CloudPrinter); - public static string CloudSearch = nameof(CloudSearch); - public static string CloudSecure = nameof(CloudSecure); - public static string CloudUpload = nameof(CloudUpload); - public static string CloudWeather = nameof(CloudWeather); - public static string Cloudy = nameof(Cloudy); - public static string Cocktails = nameof(Cocktails); - public static string Code = nameof(Code); - public static string CodeEdit = nameof(CodeEdit); - public static string Coffee = nameof(Coffee); - public static string CoffeeScript = nameof(CoffeeScript); - public static string CollapseAll = nameof(CollapseAll); - public static string CollapseContent = nameof(CollapseContent); - public static string CollapseContentSingle = nameof(CollapseContentSingle); - public static string CollapseMenu = nameof(CollapseMenu); - public static string CollegeFootball = nameof(CollegeFootball); - public static string CollegeHoops = nameof(CollegeHoops); - public static string Color = nameof(Color); - public static string ColorSolid = nameof(ColorSolid); - public static string Column = nameof(Column); - public static string ColumnFunction = nameof(ColumnFunction); - public static string ColumnLeftTwoThirds = nameof(ColumnLeftTwoThirds); - public static string ColumnLeftTwoThirdsEdit = nameof(ColumnLeftTwoThirdsEdit); - public static string ColumnList = nameof(ColumnList); - public static string ColumnOptions = nameof(ColumnOptions); - public static string ColumnQuestion = nameof(ColumnQuestion); - public static string ColumnQuestionMirrored = nameof(ColumnQuestionMirrored); - public static string ColumnRightTwoThirds = nameof(ColumnRightTwoThirds); - public static string ColumnRightTwoThirdsEdit = nameof(ColumnRightTwoThirdsEdit); - public static string ColumnSigma = nameof(ColumnSigma); - public static string ColumnVerticalSection = nameof(ColumnVerticalSection); - public static string ColumnVerticalSectionEdit = nameof(ColumnVerticalSectionEdit); - public static string Combine = nameof(Combine); - public static string Combobox = nameof(Combobox); - public static string CommandPrompt = nameof(CommandPrompt); - public static string Comment = nameof(Comment); - public static string CommentActive = nameof(CommentActive); - public static string CommentAdd = nameof(CommentAdd); - public static string CommentNext = nameof(CommentNext); - public static string CommentPrevious = nameof(CommentPrevious); - public static string CommentSolid = nameof(CommentSolid); - public static string CommentUrgent = nameof(CommentUrgent); - public static string Commitments = nameof(Commitments); - public static string CommonDataServiceCDS = nameof(CommonDataServiceCDS); - public static string CommunicationDetails = nameof(CommunicationDetails); - public static string CommunicationDetailsMirrored = nameof(CommunicationDetailsMirrored); - public static string Communications = nameof(Communications); - public static string CompactColumnList = nameof(CompactColumnList); - public static string CompactViewList = nameof(CompactViewList); - public static string CompanyDirectory = nameof(CompanyDirectory); - public static string CompanyDirectoryMirrored = nameof(CompanyDirectoryMirrored); - public static string Compare = nameof(Compare); - public static string CompareUneven = nameof(CompareUneven); - public static string CompassNW = nameof(CompassNW); - public static string Completed = nameof(Completed); - public static string Completed12 = nameof(Completed12); - public static string CompletedSolid = nameof(CompletedSolid); - public static string ComplianceAudit = nameof(ComplianceAudit); - public static string ConfigurationSolid = nameof(ConfigurationSolid); - public static string ConfirmEvent = nameof(ConfirmEvent); - public static string ConnectContacts = nameof(ConnectContacts); - public static string ConnectVirtualMachine = nameof(ConnectVirtualMachine); - public static string ConstructionCone = nameof(ConstructionCone); - public static string ConstructionConeSolid = nameof(ConstructionConeSolid); - public static string Contact = nameof(Contact); - public static string ContactCard = nameof(ContactCard); - public static string ContactCardSettings = nameof(ContactCardSettings); - public static string ContactCardSettingsMirrored = nameof(ContactCardSettingsMirrored); - public static string ContactHeart = nameof(ContactHeart); - public static string ContactInfo = nameof(ContactInfo); - public static string ContactInfoMirrored = nameof(ContactInfoMirrored); - public static string ContactLink = nameof(ContactLink); - public static string ContactList = nameof(ContactList); - public static string ContactLock = nameof(ContactLock); - public static string ContentFeed = nameof(ContentFeed); - public static string ContentSettings = nameof(ContentSettings); - public static string ContentUnderstandingApp = nameof(ContentUnderstandingApp); - public static string ContextMenu = nameof(ContextMenu); - public static string Contrast = nameof(Contrast); - public static string Copy = nameof(Copy); - public static string CopyEdit = nameof(CopyEdit); - public static string CopyPath = nameof(CopyPath); - public static string CortanaLogoBeckonInner = nameof(CortanaLogoBeckonInner); - public static string CortanaLogoBeckonOuter = nameof(CortanaLogoBeckonOuter); - public static string CortanaLogoInner = nameof(CortanaLogoInner); - public static string CortanaLogoOuter = nameof(CortanaLogoOuter); - public static string CortanaLogoReadyInner = nameof(CortanaLogoReadyInner); - public static string CortanaLogoReadyOuter = nameof(CortanaLogoReadyOuter); - public static string CostControlLedgerAdmin = nameof(CostControlLedgerAdmin); - public static string CostControl = nameof(CostControl); - public static string Cotton = nameof(Cotton); - public static string Count = nameof(Count); - public static string Coupon = nameof(Coupon); - public static string CPlusPlus = nameof(CPlusPlus); - public static string CPlusPlusLanguage = nameof(CPlusPlusLanguage); - public static string CreateMailRule = nameof(CreateMailRule); - public static string CreditCardBill = nameof(CreditCardBill); - public static string Cricket = nameof(Cricket); - public static string CriticalErrorSolid = nameof(CriticalErrorSolid); - public static string CRMLead = nameof(CRMLead); - public static string CRMProcesses = nameof(CRMProcesses); - public static string CRMReport = nameof(CRMReport); - public static string CRMResourceOptimizationApp32 = nameof(CRMResourceOptimizationApp32); - public static string CRMServices = nameof(CRMServices); - public static string Crop = nameof(Crop); - public static string Crown = nameof(Crown); - public static string CrownSolid = nameof(CrownSolid); - public static string CSharp = nameof(CSharp); - public static string CSharpLanguage = nameof(CSharpLanguage); - public static string CSS = nameof(CSS); - public static string CtrlButton = nameof(CtrlButton); - public static string CubeShape = nameof(CubeShape); - public static string CubeShapeSolid = nameof(CubeShapeSolid); - public static string Currency = nameof(Currency); - public static string CustomActivity = nameof(CustomActivity); - public static string CustomEntity = nameof(CustomEntity); - public static string CustomerAssets = nameof(CustomerAssets); - public static string CustomizeToolbar = nameof(CustomizeToolbar); - public static string CustomList = nameof(CustomList); - public static string CustomListMirrored = nameof(CustomListMirrored); - public static string Cut = nameof(Cut); - public static string Cycling = nameof(Cycling); - public static string D365BusinessCentral = nameof(D365BusinessCentral); - public static string D365CoreHR = nameof(D365CoreHR); - public static string D365CustomerInsights = nameof(D365CustomerInsights); - public static string D365CustomerVoiceApp = nameof(D365CustomerVoiceApp); - public static string D365ProjectOperations = nameof(D365ProjectOperations); - public static string D365TalentInsight = nameof(D365TalentInsight); - public static string D365TalentLearn = nameof(D365TalentLearn); - public static string DashboardAdd = nameof(DashboardAdd); - public static string DataAnalysis = nameof(DataAnalysis); - public static string Database = nameof(Database); - public static string DatabaseActivity = nameof(DatabaseActivity); - public static string DatabaseBlock = nameof(DatabaseBlock); - public static string DatabaseRefresh = nameof(DatabaseRefresh); - public static string DatabaseSource = nameof(DatabaseSource); - public static string DatabaseSwap = nameof(DatabaseSwap); - public static string DatabaseSync = nameof(DatabaseSync); - public static string DatabaseView = nameof(DatabaseView); - public static string DataConnectionLibrary = nameof(DataConnectionLibrary); - public static string DataEnrichment = nameof(DataEnrichment); - public static string DataFilter = nameof(DataFilter); - public static string DataFlow = nameof(DataFlow); - public static string Dataflows = nameof(Dataflows); - public static string DataflowsLink = nameof(DataflowsLink); - public static string DataManagementSettings = nameof(DataManagementSettings); - public static string DatamartExternal = nameof(DatamartExternal); - public static string Dataverse = nameof(Dataverse); - public static string DateTime = nameof(DateTime); - public static string DateTime12 = nameof(DateTime12); - public static string DateTime2 = nameof(DateTime2); - public static string DateTimeMirrored = nameof(DateTimeMirrored); - public static string DeactivateOrders = nameof(DeactivateOrders); - public static string Debug = nameof(Debug); - public static string DebugAll = nameof(DebugAll); - public static string Decimals = nameof(Decimals); - public static string DecisionSolid = nameof(DecisionSolid); - public static string DeclineCall = nameof(DeclineCall); - public static string DecreaseIndent = nameof(DecreaseIndent); - public static string DecreaseIndentArrow = nameof(DecreaseIndentArrow); - public static string DecreaseIndentArrowMirrored = nameof(DecreaseIndentArrowMirrored); - public static string DecreaseIndentMirrored = nameof(DecreaseIndentMirrored); - public static string DecreaseIndentText = nameof(DecreaseIndentText); - public static string DecreaseIndentTextMirrored = nameof(DecreaseIndentTextMirrored); - public static string DefaultRatio = nameof(DefaultRatio); - public static string DefaultSettings = nameof(DefaultSettings); - public static string DefectSolid = nameof(DefectSolid); - public static string DefenderApp = nameof(DefenderApp); - public static string DefenderBadge12 = nameof(DefenderBadge12); - public static string DefenderTVM = nameof(DefenderTVM); - public static string Delete = nameof(Delete); - public static string DeleteColumns = nameof(DeleteColumns); - public static string DeleteRows = nameof(DeleteRows); - public static string DeleteRowsMirrored = nameof(DeleteRowsMirrored); - public static string DeleteTable = nameof(DeleteTable); - public static string DeliveryTruck = nameof(DeliveryTruck); - public static string DelveAnalytics = nameof(DelveAnalytics); - public static string DelveAnalyticsLogo = nameof(DelveAnalyticsLogo); - public static string DelveLogo = nameof(DelveLogo); - public static string DelveLogoFill = nameof(DelveLogoFill); - public static string DelveLogoInverse = nameof(DelveLogoInverse); - public static string DensityComfy = nameof(DensityComfy); - public static string DensityDefault = nameof(DensityDefault); - public static string DependencyAdd = nameof(DependencyAdd); - public static string DependencyRemove = nameof(DependencyRemove); - public static string Deploy = nameof(Deploy); - public static string Descending = nameof(Descending); - public static string Design = nameof(Design); - public static string DesktopFlow = nameof(DesktopFlow); - public static string DesktopScreenshot = nameof(DesktopScreenshot); - public static string DeveloperTools = nameof(DeveloperTools); - public static string DeviceBug = nameof(DeviceBug); - public static string DeviceOff = nameof(DeviceOff); - public static string DeviceRun = nameof(DeviceRun); - public static string Devices2 = nameof(Devices2); - public static string Devices3 = nameof(Devices3); - public static string Devices4 = nameof(Devices4); - public static string Diagnostic = nameof(Diagnostic); - public static string DiagnosticDataBar = nameof(DiagnosticDataBar); - public static string DiagnosticDataBarTooltip = nameof(DiagnosticDataBarTooltip); - public static string DiagnosticDataViewerApp = nameof(DiagnosticDataViewerApp); - public static string Dialpad = nameof(Dialpad); - public static string DialShape1 = nameof(DialShape1); - public static string DialShape3 = nameof(DialShape3); - public static string Diamond = nameof(Diamond); - public static string DiamondSolid = nameof(DiamondSolid); - public static string DiamondUser = nameof(DiamondUser); - public static string Dictionary = nameof(Dictionary); - public static string DictionaryRemove = nameof(DictionaryRemove); - public static string DietPlanNotebook = nameof(DietPlanNotebook); - public static string DiffInline = nameof(DiffInline); - public static string DiffSideBySide = nameof(DiffSideBySide); - public static string Diploma = nameof(Diploma); - public static string DisableUpdates = nameof(DisableUpdates); - public static string DisconnectVirtualMachine = nameof(DisconnectVirtualMachine); - public static string Dislike = nameof(Dislike); - public static string DislikeSolid = nameof(DislikeSolid); - public static string Distance = nameof(Distance); - public static string DistributeDown = nameof(DistributeDown); - public static string DockLeft = nameof(DockLeft); - public static string DockLeftMirrored = nameof(DockLeftMirrored); - public static string DockRight = nameof(DockRight); - public static string DocLibrary = nameof(DocLibrary); - public static string DocsLogoInverse = nameof(DocsLogoInverse); - public static string Document = nameof(Document); - public static string DocumentApproval = nameof(DocumentApproval); - public static string Documentation = nameof(Documentation); - public static string DocumentManagement = nameof(DocumentManagement); - public static string DocumentReply = nameof(DocumentReply); - public static string DocumentSearch = nameof(DocumentSearch); - public static string DocumentSet = nameof(DocumentSet); - public static string DOM = nameof(DOM); - public static string DonutChart = nameof(DonutChart); - public static string Door = nameof(Door); - public static string DoubleBookmark = nameof(DoubleBookmark); - public static string DoubleChevronDown = nameof(DoubleChevronDown); - public static string DoubleChevronDown12 = nameof(DoubleChevronDown12); - public static string DoubleChevronDown8 = nameof(DoubleChevronDown8); - public static string DoubleChevronLeft = nameof(DoubleChevronLeft); - public static string DoubleChevronLeft12 = nameof(DoubleChevronLeft12); - public static string DoubleChevronLeft8 = nameof(DoubleChevronLeft8); - public static string DoubleChevronLeftMed = nameof(DoubleChevronLeftMed); - public static string DoubleChevronLeftMedMirrored = nameof(DoubleChevronLeftMedMirrored); - public static string DoubleChevronRight = nameof(DoubleChevronRight); - public static string DoubleChevronRight12 = nameof(DoubleChevronRight12); - public static string DoubleChevronRight8 = nameof(DoubleChevronRight8); - public static string DoubleChevronUp = nameof(DoubleChevronUp); - public static string DoubleChevronUp12 = nameof(DoubleChevronUp12); - public static string DoubleChevronUp8 = nameof(DoubleChevronUp8); - public static string DoubleColumn = nameof(DoubleColumn); - public static string DoubleColumnEdit = nameof(DoubleColumnEdit); - public static string DoubleDownArrow = nameof(DoubleDownArrow); - public static string Down = nameof(Down); - public static string DownKey = nameof(DownKey); - public static string Download = nameof(Download); - public static string DownloadDocument = nameof(DownloadDocument); - public static string DragObject = nameof(DragObject); - public static string DrillDown = nameof(DrillDown); - public static string DrillDownSolid = nameof(DrillDownSolid); - public static string DrillExpand = nameof(DrillExpand); - public static string DrillShow = nameof(DrillShow); - public static string DrillThrough = nameof(DrillThrough); - public static string DriverOff = nameof(DriverOff); - public static string DRM = nameof(DRM); - public static string Drop = nameof(Drop); - public static string Dropdown = nameof(Dropdown); - public static string DropShape = nameof(DropShape); - public static string DropShapeSolid = nameof(DropShapeSolid); - public static string DuplicateRow = nameof(DuplicateRow); - public static string DustStorm = nameof(DustStorm); - public static string DynamicList = nameof(DynamicList); - public static string Dynamics365Logo = nameof(Dynamics365Logo); - public static string DynamicSMBLogo = nameof(DynamicSMBLogo); - public static string EaseOfAccess = nameof(EaseOfAccess); - public static string EatDrink = nameof(EatDrink); - public static string EdgeLogo = nameof(EdgeLogo); - public static string EdgeLogo16 = nameof(EdgeLogo16); - public static string EdgeOldLogo = nameof(EdgeOldLogo); - public static string eDiscovery = nameof(eDiscovery); - public static string Edit = nameof(Edit); - public static string EditContact = nameof(EditContact); - public static string EditCreate = nameof(EditCreate); - public static string EditEvent = nameof(EditEvent); - public static string EditListPencil = nameof(EditListPencil); - public static string EditMail = nameof(EditMail); - public static string EditMirrored = nameof(EditMirrored); - public static string EditNote = nameof(EditNote); - public static string EditPhoto = nameof(EditPhoto); - public static string EditSolid12 = nameof(EditSolid12); - public static string EditSolidMirrored12 = nameof(EditSolidMirrored12); - public static string EditStyle = nameof(EditStyle); - public static string EditTable = nameof(EditTable); - public static string Education = nameof(Education); - public static string Ellipse = nameof(Ellipse); - public static string Embed = nameof(Embed); - public static string EMI = nameof(EMI); - public static string Emoji = nameof(Emoji); - public static string Emoji2 = nameof(Emoji2); - public static string EmojiDisappointed = nameof(EmojiDisappointed); - public static string EmojiNeutral = nameof(EmojiNeutral); - public static string EmojiTabSymbols = nameof(EmojiTabSymbols); - public static string EmployeeSelfService = nameof(EmployeeSelfService); - public static string EmptyRecycleBin = nameof(EmptyRecycleBin); - public static string Encounter = nameof(Encounter); - public static string Encryption = nameof(Encryption); - public static string EndPointSolid = nameof(EndPointSolid); - public static string EngineeringGroup = nameof(EngineeringGroup); - public static string EntitlementPolicy = nameof(EntitlementPolicy); - public static string EntitlementRedemption = nameof(EntitlementRedemption); - public static string EntityExtraction = nameof(EntityExtraction); - public static string EntryDecline = nameof(EntryDecline); - public static string EntryView = nameof(EntryView); - public static string Equalizer = nameof(Equalizer); - public static string EraseTool = nameof(EraseTool); - public static string Error = nameof(Error); - public static string ErrorBadge = nameof(ErrorBadge); - public static string ErrorBadge12 = nameof(ErrorBadge12); - public static string Event = nameof(Event); - public static string Event12 = nameof(Event12); - public static string EventAccepted = nameof(EventAccepted); - public static string EventDate = nameof(EventDate); - public static string EventDateMissed12 = nameof(EventDateMissed12); - public static string EventDeclined = nameof(EventDeclined); - public static string EventInfo = nameof(EventInfo); - public static string EventTentative = nameof(EventTentative); - public static string EventTentativeMirrored = nameof(EventTentativeMirrored); - public static string EventToDoLogo = nameof(EventToDoLogo); - public static string ExcelDocument = nameof(ExcelDocument); - public static string ExcelLogo = nameof(ExcelLogo); - public static string ExcelLogo16 = nameof(ExcelLogo16); - public static string ExcelLogoInverse = nameof(ExcelLogoInverse); - public static string ExcelLogoInverse16 = nameof(ExcelLogoInverse16); - public static string ExchangeLogo = nameof(ExchangeLogo); - public static string ExchangeLogoInverse = nameof(ExchangeLogoInverse); - public static string ExerciseTracker = nameof(ExerciseTracker); - public static string ExpandAll = nameof(ExpandAll); - public static string ExpandMenu = nameof(ExpandMenu); - public static string ExploreContent = nameof(ExploreContent); - public static string ExploreContentSingle = nameof(ExploreContentSingle); - public static string ExploreData = nameof(ExploreData); - public static string Export = nameof(Export); - public static string ExportMirrored = nameof(ExportMirrored); - public static string ExpressRouteCircuits = nameof(ExpressRouteCircuits); - public static string ExternalBuild = nameof(ExternalBuild); - public static string ExternalTFVC = nameof(ExternalTFVC); - public static string ExternalUser = nameof(ExternalUser); - public static string ExternalXAML = nameof(ExternalXAML); - public static string Eyedropper = nameof(Eyedropper); - public static string EyeShadow = nameof(EyeShadow); - public static string F12DevTools = nameof(F12DevTools); - public static string FabricAssetLibrary = nameof(FabricAssetLibrary); - public static string FabricChannelFolder = nameof(FabricChannelFolder); - public static string FabricDataConnectionLibrary = nameof(FabricDataConnectionLibrary); - public static string FabricDocLibrary = nameof(FabricDocLibrary); - public static string FabricFolder = nameof(FabricFolder); - public static string FabricFolderConfirm = nameof(FabricFolderConfirm); - public static string FabricFolderFill = nameof(FabricFolderFill); - public static string FabricFolderLink = nameof(FabricFolderLink); - public static string FabricFolderSearch = nameof(FabricFolderSearch); - public static string FabricFolderUpload = nameof(FabricFolderUpload); - public static string FabricFormLibrary = nameof(FabricFormLibrary); - public static string FabricFormLibraryMirrored = nameof(FabricFormLibraryMirrored); - public static string FabricMoveToFolder = nameof(FabricMoveToFolder); - public static string FabricNetworkFolder = nameof(FabricNetworkFolder); - public static string FabricNewFolder = nameof(FabricNewFolder); - public static string FabricOpenFolderHorizontal = nameof(FabricOpenFolderHorizontal); - public static string FabricPictureLibrary = nameof(FabricPictureLibrary); - public static string FabricPublicFolder = nameof(FabricPublicFolder); - public static string FabricReportLibrary = nameof(FabricReportLibrary); - public static string FabricReportLibraryMirrored = nameof(FabricReportLibraryMirrored); - public static string FabricSyncFolder = nameof(FabricSyncFolder); - public static string FabricTextHighlight = nameof(FabricTextHighlight); - public static string FabricTextHighlightComposite = nameof(FabricTextHighlightComposite); - public static string FabricUnsyncFolder = nameof(FabricUnsyncFolder); - public static string FabricUserFolder = nameof(FabricUserFolder); - public static string Factory = nameof(Factory); - public static string Family = nameof(Family); - public static string FangBody = nameof(FangBody); - public static string FastForward = nameof(FastForward); - public static string FastForwardEightX = nameof(FastForwardEightX); - public static string FastForwardFourX = nameof(FastForwardFourX); - public static string FastForwardOneFiveX = nameof(FastForwardOneFiveX); - public static string FastForwardOneX = nameof(FastForwardOneX); - public static string FastForwardPointFiveX = nameof(FastForwardPointFiveX); - public static string FastForwardTwoX = nameof(FastForwardTwoX); - public static string FastMode = nameof(FastMode); - public static string Favicon = nameof(Favicon); - public static string FavoriteBlock = nameof(FavoriteBlock); - public static string FavoriteList = nameof(FavoriteList); - public static string FavoriteStar = nameof(FavoriteStar); - public static string FavoriteStarFill = nameof(FavoriteStarFill); - public static string Fax = nameof(Fax); - public static string Feedback = nameof(Feedback); - public static string FeedbackRequestMirroredSolid = nameof(FeedbackRequestMirroredSolid); - public static string FeedbackRequestSolid = nameof(FeedbackRequestSolid); - public static string FeedbackResponseSolid = nameof(FeedbackResponseSolid); - public static string Ferry = nameof(Ferry); - public static string FerrySolid = nameof(FerrySolid); - public static string FieldChanged = nameof(FieldChanged); - public static string FieldEmpty = nameof(FieldEmpty); - public static string FieldFilled = nameof(FieldFilled); - public static string FieldNotChanged = nameof(FieldNotChanged); - public static string FieldReadOnly = nameof(FieldReadOnly); - public static string FieldRequired = nameof(FieldRequired); - public static string FileASPX = nameof(FileASPX); - public static string FileBug = nameof(FileBug); - public static string FileCode = nameof(FileCode); - public static string FileComment = nameof(FileComment); - public static string FileCSS = nameof(FileCSS); - public static string FileHTML = nameof(FileHTML); - public static string FileImage = nameof(FileImage); - public static string FileJAVA = nameof(FileJAVA); - public static string FileLess = nameof(FileLess); - public static string FileOff = nameof(FileOff); - public static string FilePDB = nameof(FilePDB); - public static string FileRequest = nameof(FileRequest); - public static string FileSass = nameof(FileSass); - public static string FileSQL = nameof(FileSQL); - public static string FileSymlink = nameof(FileSymlink); - public static string FileSystem = nameof(FileSystem); - public static string FileTemplate = nameof(FileTemplate); - public static string FileTypeSolution = nameof(FileTypeSolution); - public static string FileYML = nameof(FileYML); - public static string Filter = nameof(Filter); - public static string FilterAscending = nameof(FilterAscending); - public static string FilterDescending = nameof(FilterDescending); - public static string Filters = nameof(Filters); - public static string FilterSettings = nameof(FilterSettings); - public static string FilterSolid = nameof(FilterSolid); - public static string FiltersSolid = nameof(FiltersSolid); - public static string Financial = nameof(Financial); - public static string FinancialMirroredSolid = nameof(FinancialMirroredSolid); - public static string FinancialSolid = nameof(FinancialSolid); - public static string Fingerprint = nameof(Fingerprint); - public static string FitPage = nameof(FitPage); - public static string FitWidth = nameof(FitWidth); - public static string FiveTileGrid = nameof(FiveTileGrid); - public static string FixedAssetManagement = nameof(FixedAssetManagement); - public static string FixedColumnWidth = nameof(FixedColumnWidth); - public static string Flag = nameof(Flag); - public static string FlameSolid = nameof(FlameSolid); - public static string FlashAuto = nameof(FlashAuto); - public static string Flashlight = nameof(Flashlight); - public static string FlashOff = nameof(FlashOff); - public static string FlickDown = nameof(FlickDown); - public static string FlickLeft = nameof(FlickLeft); - public static string FlickRight = nameof(FlickRight); - public static string FlickUp = nameof(FlickUp); - public static string Flow = nameof(Flow); - public static string FlowChart = nameof(FlowChart); - public static string Flower = nameof(Flower); - public static string FlowTemplate = nameof(FlowTemplate); - public static string FlowTrigger = nameof(FlowTrigger); - public static string FluidLogo = nameof(FluidLogo); - public static string FocalPoint = nameof(FocalPoint); - public static string Focus = nameof(Focus); - public static string FocusView = nameof(FocusView); - public static string Fog = nameof(Fog); - public static string Folder = nameof(Folder); - public static string FolderFill = nameof(FolderFill); - public static string FolderHorizontal = nameof(FolderHorizontal); - public static string FolderList = nameof(FolderList); - public static string FolderListMirrored = nameof(FolderListMirrored); - public static string FolderOpen = nameof(FolderOpen); - public static string FolderQuery = nameof(FolderQuery); - public static string FolderSearch = nameof(FolderSearch); - public static string FollowUser = nameof(FollowUser); - public static string Font = nameof(Font); - public static string FontColor = nameof(FontColor); - public static string FontColorA = nameof(FontColorA); - public static string FontColorKorean = nameof(FontColorKorean); - public static string FontColorSwatch = nameof(FontColorSwatch); - public static string FontDecrease = nameof(FontDecrease); - public static string FontIncrease = nameof(FontIncrease); - public static string FontSize = nameof(FontSize); - public static string FontSize2 = nameof(FontSize2); - public static string FontStyleKorean = nameof(FontStyleKorean); - public static string Footer = nameof(Footer); - public static string FormatPainter = nameof(FormatPainter); - public static string FormLibrary = nameof(FormLibrary); - public static string FormLibraryMirrored = nameof(FormLibraryMirrored); - public static string FormProcessing = nameof(FormProcessing); - public static string Forum = nameof(Forum); - public static string Forward = nameof(Forward); - public static string ForwardEvent = nameof(ForwardEvent); - public static string Freezing = nameof(Freezing); - public static string FreezingRain = nameof(FreezingRain); - public static string Frigid = nameof(Frigid); - public static string FrontCamera = nameof(FrontCamera); - public static string FSharp = nameof(FSharp); - public static string FSharpLanguage = nameof(FSharpLanguage); - public static string FullCircleMask = nameof(FullCircleMask); - public static string FullHistory = nameof(FullHistory); - public static string FullScreen = nameof(FullScreen); - public static string FullView = nameof(FullView); - public static string FullWidth = nameof(FullWidth); - public static string FullWidthEdit = nameof(FullWidthEdit); - public static string FunctionalManagerDashboard = nameof(FunctionalManagerDashboard); - public static string FunnelChart = nameof(FunnelChart); - public static string GallatinLogo = nameof(GallatinLogo); - public static string Game = nameof(Game); - public static string Gather = nameof(Gather); - public static string Generate = nameof(Generate); - public static string GenericScan = nameof(GenericScan); - public static string GenericScanFilled = nameof(GenericScanFilled); - public static string GIF = nameof(GIF); - public static string Giftbox = nameof(Giftbox); - public static string GiftboxOpen = nameof(GiftboxOpen); - public static string GiftBoxSolid = nameof(GiftBoxSolid); - public static string GiftCard = nameof(GiftCard); - public static string GitGraph = nameof(GitGraph); - public static string Glasses = nameof(Glasses); - public static string Glimmer = nameof(Glimmer); - public static string GlobalNavButton = nameof(GlobalNavButton); - public static string GlobalNavButtonActive = nameof(GlobalNavButtonActive); - public static string Globe = nameof(Globe); - public static string Globe2 = nameof(Globe2); - public static string GlobeFavorite = nameof(GlobeFavorite); - public static string Go = nameof(Go); - public static string Golf = nameof(Golf); - public static string GoMirrored = nameof(GoMirrored); - public static string GoToDashboard = nameof(GoToDashboard); - public static string GotoToday = nameof(GotoToday); - public static string GraphSymbol = nameof(GraphSymbol); - public static string GreetingCard = nameof(GreetingCard); - public static string GridViewLarge = nameof(GridViewLarge); - public static string GridViewMedium = nameof(GridViewMedium); - public static string GridViewSmall = nameof(GridViewSmall); - public static string GripperBarHorizontal = nameof(GripperBarHorizontal); - public static string GripperBarVertical = nameof(GripperBarVertical); - public static string GripperDotsVertical = nameof(GripperDotsVertical); - public static string GripperTool = nameof(GripperTool); - public static string Group = nameof(Group); - public static string GroupedAscending = nameof(GroupedAscending); - public static string GroupedDescending = nameof(GroupedDescending); - public static string GroupedList = nameof(GroupedList); - public static string GroupList = nameof(GroupList); - public static string GroupObject = nameof(GroupObject); - public static string GroupRemove = nameof(GroupRemove); - public static string GUID = nameof(GUID); - public static string Guitar = nameof(Guitar); - public static string HailDay = nameof(HailDay); - public static string HailNight = nameof(HailNight); - public static string HalfAlpha = nameof(HalfAlpha); - public static string HalfCircle = nameof(HalfCircle); - public static string HandsFree = nameof(HandsFree); - public static string Handwriting = nameof(Handwriting); - public static string HardDrive = nameof(HardDrive); - public static string HardDriveGroup = nameof(HardDriveGroup); - public static string HardDriveLock = nameof(HardDriveLock); - public static string HardDriveUnlock = nameof(HardDriveUnlock); - public static string HazyDay = nameof(HazyDay); - public static string HazyNight = nameof(HazyNight); - public static string Header = nameof(Header); - public static string Header1 = nameof(Header1); - public static string Header2 = nameof(Header2); - public static string Header3 = nameof(Header3); - public static string Header4 = nameof(Header4); - public static string Headset = nameof(Headset); - public static string HeadsetSolid = nameof(HeadsetSolid); - public static string Health = nameof(Health); - public static string HealthRefresh = nameof(HealthRefresh); - public static string HealthSolid = nameof(HealthSolid); - public static string Heart = nameof(Heart); - public static string HeartBroken = nameof(HeartBroken); - public static string HeartFill = nameof(HeartFill); - public static string Help = nameof(Help); - public static string HelpMirrored = nameof(HelpMirrored); - public static string HexaditeInvestigation = nameof(HexaditeInvestigation); - public static string HexaditeInvestigationCancel = nameof(HexaditeInvestigationCancel); - public static string HexaditeInvestigationSemiAuto = nameof(HexaditeInvestigationSemiAuto); - public static string Hexagon = nameof(Hexagon); - public static string Hide = nameof(Hide); - public static string Hide2 = nameof(Hide2); - public static string Hide3 = nameof(Hide3); - public static string HideVisualFilter = nameof(HideVisualFilter); - public static string Highlight = nameof(Highlight); - public static string HighlightMappedShapes = nameof(HighlightMappedShapes); - public static string HintText = nameof(HintText); - public static string HistoricalWeather = nameof(HistoricalWeather); - public static string History = nameof(History); - public static string Home = nameof(Home); - public static string HomeDropdown = nameof(HomeDropdown); - public static string HomeGroup = nameof(HomeGroup); - public static string HomeSolid = nameof(HomeSolid); - public static string HomeVerify = nameof(HomeVerify); - public static string HorizontalDistributeCenter = nameof(HorizontalDistributeCenter); - public static string HorizontalTabKey = nameof(HorizontalTabKey); - public static string Hospital = nameof(Hospital); - public static string Hot = nameof(Hot); - public static string Hotel = nameof(Hotel); - public static string HourGlass = nameof(HourGlass); - public static string Ice = nameof(Ice); - public static string IconSetsFlag = nameof(IconSetsFlag); - public static string IDBadge = nameof(IDBadge); - public static string IgnoreConversation = nameof(IgnoreConversation); - public static string ImageCrosshair = nameof(ImageCrosshair); - public static string ImageDiff = nameof(ImageDiff); - public static string ImageInAR = nameof(ImageInAR); - public static string ImagePixel = nameof(ImagePixel); - public static string ImageSearch = nameof(ImageSearch); - public static string Import = nameof(Import); - public static string ImportAllMirrored = nameof(ImportAllMirrored); - public static string Important = nameof(Important); - public static string ImportMirrored = nameof(ImportMirrored); - public static string Inbox = nameof(Inbox); - public static string InboxActive = nameof(InboxActive); - public static string InboxCheck = nameof(InboxCheck); - public static string IncidentTriangle = nameof(IncidentTriangle); - public static string IncomingCall = nameof(IncomingCall); - public static string IncreaseIndent = nameof(IncreaseIndent); - public static string IncreaseIndentArrow = nameof(IncreaseIndentArrow); - public static string IncreaseIndentArrowMirrored = nameof(IncreaseIndentArrowMirrored); - public static string IncreaseIndentHanging = nameof(IncreaseIndentHanging); - public static string IncreaseIndentHangingMirrored = nameof(IncreaseIndentHangingMirrored); - public static string IncreaseIndentMirrored = nameof(IncreaseIndentMirrored); - public static string IncreaseIndentText = nameof(IncreaseIndentText); - public static string IncreaseIndentTextMirrored = nameof(IncreaseIndentTextMirrored); - public static string IndentFirstLine = nameof(IndentFirstLine); - public static string Info = nameof(Info); - public static string Info12 = nameof(Info12); - public static string Info2 = nameof(Info2); - public static string InformationBarriers = nameof(InformationBarriers); - public static string InfoSolid = nameof(InfoSolid); - public static string InkingTool = nameof(InkingTool); - public static string InputAddress = nameof(InputAddress); - public static string Insert = nameof(Insert); - public static string InsertColumnsLeft = nameof(InsertColumnsLeft); - public static string InsertColumnsRight = nameof(InsertColumnsRight); - public static string InsertRowsAbove = nameof(InsertRowsAbove); - public static string InsertRowsBelow = nameof(InsertRowsBelow); - public static string InsertSignatureLine = nameof(InsertSignatureLine); - public static string InsertTextBox = nameof(InsertTextBox); - public static string InsertTextBoxKorean = nameof(InsertTextBoxKorean); - public static string Insights = nameof(Insights); - public static string Installation = nameof(Installation); - public static string InstallToDrive = nameof(InstallToDrive); - public static string IntermittentCloudsDay = nameof(IntermittentCloudsDay); - public static string IntermittentCloudsNight = nameof(IntermittentCloudsNight); - public static string InternalInvestigation = nameof(InternalInvestigation); - public static string InternetSharing = nameof(InternetSharing); - public static string IntersectShape = nameof(IntersectShape); - public static string Invoice = nameof(Invoice); - public static string IOT = nameof(IOT); - public static string IoTSecure = nameof(IoTSecure); - public static string IRMForward = nameof(IRMForward); - public static string IRMForwardMirrored = nameof(IRMForwardMirrored); - public static string IRMReply = nameof(IRMReply); - public static string IRMReplyMirrored = nameof(IRMReplyMirrored); - public static string IssueSolid = nameof(IssueSolid); - public static string IssueTracking = nameof(IssueTracking); - public static string IssueTrackingMirrored = nameof(IssueTrackingMirrored); - public static string Italic = nameof(Italic); - public static string ItalicC = nameof(ItalicC); - public static string ItalicD = nameof(ItalicD); - public static string ItalicK = nameof(ItalicK); - public static string ItalicKazakh = nameof(ItalicKazakh); - public static string ItalicKorean = nameof(ItalicKorean); - public static string ItalicL = nameof(ItalicL); - public static string ItalicS = nameof(ItalicS); - public static string ItalicT = nameof(ItalicT); - public static string JavaScriptLanguage = nameof(JavaScriptLanguage); - public static string JoinOnlineMeeting = nameof(JoinOnlineMeeting); - public static string JS = nameof(JS); - public static string KaizalaLogo = nameof(KaizalaLogo); - public static string KeyboardClassic = nameof(KeyboardClassic); - public static string KeyPhraseExtraction = nameof(KeyPhraseExtraction); - public static string KnowledgeArticle = nameof(KnowledgeArticle); - public static string KnowledgeManagementApp = nameof(KnowledgeManagementApp); - public static string Label = nameof(Label); - public static string LadybugSolid = nameof(LadybugSolid); - public static string Lamp = nameof(Lamp); - public static string LandscapeOrientation = nameof(LandscapeOrientation); - public static string LaptopSecure = nameof(LaptopSecure); - public static string LaptopSelected = nameof(LaptopSelected); - public static string LargeGrid = nameof(LargeGrid); - public static string LearningApp = nameof(LearningApp); - public static string LearningTools = nameof(LearningTools); - public static string Leave = nameof(Leave); - public static string LeaveUser = nameof(LeaveUser); - public static string LeftKey = nameof(LeftKey); - public static string Library = nameof(Library); - public static string LibraryAddTo = nameof(LibraryAddTo); - public static string Lifesaver = nameof(Lifesaver); - public static string LifesaverLock = nameof(LifesaverLock); - public static string Light = nameof(Light); - public static string Lightbulb = nameof(Lightbulb); - public static string LightbulbSolid = nameof(LightbulbSolid); - public static string LightningBolt = nameof(LightningBolt); - public static string LightningBoltSolid = nameof(LightningBoltSolid); - public static string LightningSecure = nameof(LightningSecure); - public static string LightSnow = nameof(LightSnow); - public static string LightWeight = nameof(LightWeight); - public static string Like = nameof(Like); - public static string LikeSolid = nameof(LikeSolid); - public static string Line = nameof(Line); - public static string LineChart = nameof(LineChart); - public static string LineSpacing = nameof(LineSpacing); - public static string LineStyle = nameof(LineStyle); - public static string LineThickness = nameof(LineThickness); - public static string Link = nameof(Link); - public static string Link12 = nameof(Link12); - public static string LinkedDatabase = nameof(LinkedDatabase); - public static string LinkedInLogo = nameof(LinkedInLogo); - public static string List = nameof(List); - public static string ListMirrored = nameof(ListMirrored); - public static string LiveSite = nameof(LiveSite); - public static string LocalAdmin = nameof(LocalAdmin); - public static string LocaleLanguage = nameof(LocaleLanguage); - public static string Location = nameof(Location); - public static string LocationCircle = nameof(LocationCircle); - public static string LocationDot = nameof(LocationDot); - public static string LocationFill = nameof(LocationFill); - public static string LocationOutline = nameof(LocationOutline); - public static string Lock = nameof(Lock); - public static string Lock12 = nameof(Lock12); - public static string LockShare = nameof(LockShare); - public static string LockSolid = nameof(LockSolid); - public static string LogRemove = nameof(LogRemove); - public static string LookupEntities = nameof(LookupEntities); - public static string LowerBrightness = nameof(LowerBrightness); - public static string LowerCase = nameof(LowerCase); - public static string LyncLogo = nameof(LyncLogo); - public static string M365InvoicingLogo = nameof(M365InvoicingLogo); - public static string MachineLearning = nameof(MachineLearning); - public static string Mail = nameof(Mail); - public static string MailAlert = nameof(MailAlert); - public static string MailAttached = nameof(MailAttached); - public static string MailCheck = nameof(MailCheck); - public static string MailFill = nameof(MailFill); - public static string MailForward = nameof(MailForward); - public static string MailForwardMirrored = nameof(MailForwardMirrored); - public static string MailLink = nameof(MailLink); - public static string MailLowImportance = nameof(MailLowImportance); - public static string MailOptions = nameof(MailOptions); - public static string MailPause = nameof(MailPause); - public static string MailReminder = nameof(MailReminder); - public static string MailRepeat = nameof(MailRepeat); - public static string MailReply = nameof(MailReply); - public static string MailReplyAll = nameof(MailReplyAll); - public static string MailReplyAllMirrored = nameof(MailReplyAllMirrored); - public static string MailReplyMirrored = nameof(MailReplyMirrored); - public static string MailSchedule = nameof(MailSchedule); - public static string MailSecure = nameof(MailSecure); - public static string MailSolid = nameof(MailSolid); - public static string MailTentative = nameof(MailTentative); - public static string MailTentativeMirrored = nameof(MailTentativeMirrored); - public static string MailUndelivered = nameof(MailUndelivered); - public static string ManagerSelfService = nameof(ManagerSelfService); - public static string Manufacturing = nameof(Manufacturing); - public static string MapDirections = nameof(MapDirections); - public static string MapLayers = nameof(MapLayers); - public static string MapPin = nameof(MapPin); - public static string MapPin12 = nameof(MapPin12); - public static string MapPinSolid = nameof(MapPinSolid); - public static string MarkAsProtected = nameof(MarkAsProtected); - public static string MarkDownLanguage = nameof(MarkDownLanguage); - public static string Market = nameof(Market); - public static string MarketDown = nameof(MarketDown); - public static string MasterDatabase = nameof(MasterDatabase); - public static string MaximumValue = nameof(MaximumValue); - public static string Medal = nameof(Medal); - public static string MedalSolid = nameof(MedalSolid); - public static string Media = nameof(Media); - public static string MediaAdd = nameof(MediaAdd); - public static string Medical = nameof(Medical); - public static string MedicalCare = nameof(MedicalCare); - public static string MedicationAdmin = nameof(MedicationAdmin); - public static string MedicationRequest = nameof(MedicationRequest); - public static string Megaphone = nameof(Megaphone); - public static string MegaphoneSolid = nameof(MegaphoneSolid); - public static string Memo = nameof(Memo); - public static string Merge = nameof(Merge); - public static string MergeCase = nameof(MergeCase); - public static string MergeDuplicate = nameof(MergeDuplicate); - public static string Message = nameof(Message); - public static string MessageFill = nameof(MessageFill); - public static string MessageFriendRequest = nameof(MessageFriendRequest); - public static string MetricsFailure = nameof(MetricsFailure); - public static string MetricsInstall = nameof(MetricsInstall); - public static string MetricsUsage = nameof(MetricsUsage); - public static string MicOff = nameof(MicOff); - public static string MicOff2 = nameof(MicOff2); - public static string Microphone = nameof(Microphone); - public static string MicrosoftStaffHubLogo = nameof(MicrosoftStaffHubLogo); - public static string MicrosoftTranslatorLogo = nameof(MicrosoftTranslatorLogo); - public static string MicrosoftTranslatorLogoBlue = nameof(MicrosoftTranslatorLogoBlue); - public static string MicrosoftTranslatorLogoGreen = nameof(MicrosoftTranslatorLogoGreen); - public static string MiniContract = nameof(MiniContract); - public static string MiniContractMirrored = nameof(MiniContractMirrored); - public static string MiniExpand = nameof(MiniExpand); - public static string MiniExpandMirrored = nameof(MiniExpandMirrored); - public static string MiniLink = nameof(MiniLink); - public static string MinimumValue = nameof(MinimumValue); - public static string MobileAngled = nameof(MobileAngled); - public static string MobileReport = nameof(MobileReport); - public static string MobileSelected = nameof(MobileSelected); - public static string ModelAppTemplate32 = nameof(ModelAppTemplate32); - public static string ModelingView = nameof(ModelingView); - public static string Money = nameof(Money); - public static string More = nameof(More); - public static string MoreSports = nameof(MoreSports); - public static string MoreVertical = nameof(MoreVertical); - public static string MostlyClearNight = nameof(MostlyClearNight); - public static string MostlyCloudyFlurriesDay = nameof(MostlyCloudyFlurriesDay); - public static string MostlyCloudyFlurriesNight = nameof(MostlyCloudyFlurriesNight); - public static string MostlyCloudyShowersDay = nameof(MostlyCloudyShowersDay); - public static string MostlyCloudyTStormsDay = nameof(MostlyCloudyTStormsDay); - public static string MostlyCloudyTStormsNight = nameof(MostlyCloudyTStormsNight); - public static string MostlySunnyDay = nameof(MostlySunnyDay); - public static string MountainClimbing = nameof(MountainClimbing); - public static string Move = nameof(Move); - public static string Movers = nameof(Movers); - public static string MoveToFolder = nameof(MoveToFolder); - public static string MSListsConnected = nameof(MSListsConnected); - public static string MSNLogo = nameof(MSNLogo); - public static string MSNVideos = nameof(MSNVideos); - public static string MSNVideosSolid = nameof(MSNVideosSolid); - public static string MSNVolume = nameof(MSNVolume); - public static string MultiSelect = nameof(MultiSelect); - public static string MultiSelectMirrored = nameof(MultiSelectMirrored); - public static string MusicInCollection = nameof(MusicInCollection); - public static string MusicInCollectionFill = nameof(MusicInCollectionFill); - public static string MusicNote = nameof(MusicNote); - public static string MuteChat = nameof(MuteChat); - public static string MyMoviesTV = nameof(MyMoviesTV); - public static string MyNetwork = nameof(MyNetwork); - public static string Nav2DMapView = nameof(Nav2DMapView); - public static string NavigateBack = nameof(NavigateBack); - public static string NavigateBackMirrored = nameof(NavigateBackMirrored); - public static string NavigateExternalInline = nameof(NavigateExternalInline); - public static string NavigateForward = nameof(NavigateForward); - public static string NavigateForwardMirrored = nameof(NavigateForwardMirrored); - public static string NavigationFlipper = nameof(NavigationFlipper); - public static string NetworkDeviceScanning = nameof(NetworkDeviceScanning); - public static string NetworkTower = nameof(NetworkTower); - public static string NewAnalyticsQuery = nameof(NewAnalyticsQuery); - public static string NewFolder = nameof(NewFolder); - public static string NewMail = nameof(NewMail); - public static string News = nameof(News); - public static string NewsSearch = nameof(NewsSearch); - public static string NewTeamProject = nameof(NewTeamProject); - public static string Next = nameof(Next); - public static string NormalWeight = nameof(NormalWeight); - public static string NoteForward = nameof(NoteForward); - public static string NotePinned = nameof(NotePinned); - public static string NoteReply = nameof(NoteReply); - public static string NotExecuted = nameof(NotExecuted); - public static string NotImpactedSolid = nameof(NotImpactedSolid); - public static string NugetLogo = nameof(NugetLogo); - public static string NUIFace = nameof(NUIFace); - public static string Number = nameof(Number); - public static string NumberedList = nameof(NumberedList); - public static string NumberedListMirrored = nameof(NumberedListMirrored); - public static string NumberedListNumber = nameof(NumberedListNumber); - public static string NumberedListNumberMirrored = nameof(NumberedListNumberMirrored); - public static string NumberedListText = nameof(NumberedListText); - public static string NumberedListTextMirrored = nameof(NumberedListTextMirrored); - public static string NumberField = nameof(NumberField); - public static string NumberSequence = nameof(NumberSequence); - public static string NumberSymbol = nameof(NumberSymbol); - public static string Oauth = nameof(Oauth); - public static string ObjectRecognition = nameof(ObjectRecognition); - public static string Octagon = nameof(Octagon); - public static string ODLink = nameof(ODLink); - public static string ODLink12 = nameof(ODLink12); - public static string ODSharedChannel = nameof(ODSharedChannel); - public static string ODSharedChannel12 = nameof(ODSharedChannel12); - public static string OEM = nameof(OEM); - public static string OfficeAddinsLogo = nameof(OfficeAddinsLogo); - public static string OfficeAssistantLogo = nameof(OfficeAssistantLogo); - public static string OfficeCatchUp = nameof(OfficeCatchUp); - public static string OfficeChat = nameof(OfficeChat); - public static string OfficeChatSolid = nameof(OfficeChatSolid); - public static string OfficeFormsLogo = nameof(OfficeFormsLogo); - public static string OfficeFormsLogo16 = nameof(OfficeFormsLogo16); - public static string OfficeFormsLogo24 = nameof(OfficeFormsLogo24); - public static string OfficeFormsLogoInverse = nameof(OfficeFormsLogoInverse); - public static string OfficeFormsLogoInverse16 = nameof(OfficeFormsLogoInverse16); - public static string OfficeFormsLogoInverse24 = nameof(OfficeFormsLogoInverse24); - public static string OfficeLogo = nameof(OfficeLogo); - public static string OfficeStoreLogo = nameof(OfficeStoreLogo); - public static string OfficeVideoLogo = nameof(OfficeVideoLogo); - public static string OfficeVideoLogoFill = nameof(OfficeVideoLogoFill); - public static string OfficeVideoLogoInverse = nameof(OfficeVideoLogoInverse); - public static string OfflineOneDriveParachute = nameof(OfflineOneDriveParachute); - public static string OfflineOneDriveParachuteDisabled = nameof(OfflineOneDriveParachuteDisabled); - public static string OfflineStorage = nameof(OfflineStorage); - public static string OfflineStorageSolid = nameof(OfflineStorageSolid); - public static string Onboarding = nameof(Onboarding); - public static string OneDriveAdd = nameof(OneDriveAdd); - public static string OneDriveFolder16 = nameof(OneDriveFolder16); - public static string OneDriveLogo = nameof(OneDriveLogo); - public static string OneNoteDocType = nameof(OneNoteDocType); - public static string OneNoteEduLogoInverse = nameof(OneNoteEduLogoInverse); - public static string OneNoteLogo = nameof(OneNoteLogo); - public static string OneNoteLogo16 = nameof(OneNoteLogo16); - public static string OneNoteLogoInverse = nameof(OneNoteLogoInverse); - public static string OneNoteLogoInverse16 = nameof(OneNoteLogoInverse16); - public static string OpenEnrollment = nameof(OpenEnrollment); - public static string OpenFile = nameof(OpenFile); - public static string OpenFolderHorizontal = nameof(OpenFolderHorizontal); - public static string OpenInNewTab = nameof(OpenInNewTab); - public static string OpenInNewWindow = nameof(OpenInNewWindow); - public static string OpenPane = nameof(OpenPane); - public static string OpenPaneMirrored = nameof(OpenPaneMirrored); - public static string OpenSource = nameof(OpenSource); - public static string OpenWith = nameof(OpenWith); - public static string OpenWithMirrored = nameof(OpenWithMirrored); - public static string Opportunities = nameof(Opportunities); - public static string OrderLock = nameof(OrderLock); - public static string Org = nameof(Org); - public static string Orientation = nameof(Orientation); - public static string Orientation2 = nameof(Orientation2); - public static string OutlookLogo = nameof(OutlookLogo); - public static string OutlookLogo16 = nameof(OutlookLogo16); - public static string OutlookLogoInverse = nameof(OutlookLogoInverse); - public static string OutlookLogoInverse16 = nameof(OutlookLogoInverse16); - public static string OutlookSpacesBucket = nameof(OutlookSpacesBucket); - public static string OutOfOffice = nameof(OutOfOffice); - public static string PAAction = nameof(PAAction); - public static string Package = nameof(Package); - public static string Packages = nameof(Packages); - public static string Padding = nameof(Padding); - public static string PaddingBottom = nameof(PaddingBottom); - public static string PaddingLeft = nameof(PaddingLeft); - public static string PaddingRight = nameof(PaddingRight); - public static string PaddingTop = nameof(PaddingTop); - public static string Page = nameof(Page); - public static string PageAdd = nameof(PageAdd); - public static string PageArrowRight = nameof(PageArrowRight); - public static string PageBlock = nameof(PageBlock); - public static string PageCheckedIn = nameof(PageCheckedIn); - public static string PageCheckedOut = nameof(PageCheckedOut); - public static string PageData = nameof(PageData); - public static string PageEdit = nameof(PageEdit); - public static string PageHeader = nameof(PageHeader); - public static string PageHeaderEdit = nameof(PageHeaderEdit); - public static string PageLeft = nameof(PageLeft); - public static string PageLink = nameof(PageLink); - public static string PageList = nameof(PageList); - public static string PageListFilter = nameof(PageListFilter); - public static string PageListMirroredSolid = nameof(PageListMirroredSolid); - public static string PageListSolid = nameof(PageListSolid); - public static string PageLock = nameof(PageLock); - public static string PagePermission = nameof(PagePermission); - public static string PageRemove = nameof(PageRemove); - public static string PageRight = nameof(PageRight); - public static string PageShared = nameof(PageShared); - public static string PageSolid = nameof(PageSolid); - public static string PanoIndicator = nameof(PanoIndicator); - public static string Parachute = nameof(Parachute); - public static string ParachuteSolid = nameof(ParachuteSolid); - public static string Parameter = nameof(Parameter); - public static string ParkingLocation = nameof(ParkingLocation); - public static string ParkingLocationMirrored = nameof(ParkingLocationMirrored); - public static string ParkingMirroredSolid = nameof(ParkingMirroredSolid); - public static string ParkingSolid = nameof(ParkingSolid); - public static string PartlyClearNight = nameof(PartlyClearNight); - public static string PartlyCloudyDay = nameof(PartlyCloudyDay); - public static string PartlyCloudyNight = nameof(PartlyCloudyNight); - public static string PartlySunnyDay = nameof(PartlySunnyDay); - public static string PartlySunnyFlurriesDay = nameof(PartlySunnyFlurriesDay); - public static string PartlySunnyShowersDay = nameof(PartlySunnyShowersDay); - public static string PartlySunnyShowersNight = nameof(PartlySunnyShowersNight); - public static string PartlySunnyTStormsDay = nameof(PartlySunnyTStormsDay); - public static string PartlySunnyTStormsNight = nameof(PartlySunnyTStormsNight); - public static string PartyLeader = nameof(PartyLeader); - public static string PassiveAuthentication = nameof(PassiveAuthentication); - public static string PasswordField = nameof(PasswordField); - public static string Paste = nameof(Paste); - public static string PasteAsCode = nameof(PasteAsCode); - public static string PasteAsText = nameof(PasteAsText); - public static string Pause = nameof(Pause); - public static string PaymentCard = nameof(PaymentCard); - public static string PBIAnomaliesMarker = nameof(PBIAnomaliesMarker); - public static string PBIAnomaly = nameof(PBIAnomaly); - public static string PBIColumn = nameof(PBIColumn); - public static string PBIConnectPoints = nameof(PBIConnectPoints); - public static string PBIDirectQuery = nameof(PBIDirectQuery); - public static string PBIDual = nameof(PBIDual); - public static string PBIGap = nameof(PBIGap); - public static string PBIGoalEntry = nameof(PBIGoalEntry); - public static string PBIGoalEntryAdd = nameof(PBIGoalEntryAdd); - public static string PBIHomeLayoutDefault = nameof(PBIHomeLayoutDefault); - public static string PBIHomeLayoutExpanded = nameof(PBIHomeLayoutExpanded); - public static string PBIImport = nameof(PBIImport); - public static string PBILiveConnect = nameof(PBILiveConnect); - public static string PBIPerspective = nameof(PBIPerspective); - public static string PBIReportTemplate = nameof(PBIReportTemplate); - public static string PBIZero = nameof(PBIZero); - public static string PC1 = nameof(PC1); - public static string PDF = nameof(PDF); - public static string PencilReply = nameof(PencilReply); - public static string Pentagon = nameof(Pentagon); - public static string PenWorkspace = nameof(PenWorkspace); - public static string People = nameof(People); - public static string PeopleAdd = nameof(PeopleAdd); - public static string PeopleAlert = nameof(PeopleAlert); - public static string PeopleBlock = nameof(PeopleBlock); - public static string PeopleExternalShare = nameof(PeopleExternalShare); - public static string PeoplePause = nameof(PeoplePause); - public static string PeopleRepeat = nameof(PeopleRepeat); - public static string PeopleSettings = nameof(PeopleSettings); - public static string Permissions = nameof(Permissions); - public static string PermissionsSolid = nameof(PermissionsSolid); - public static string Personalize = nameof(Personalize); - public static string Phishing = nameof(Phishing); - public static string PhishingCampaign = nameof(PhishingCampaign); - public static string PhishingHook = nameof(PhishingHook); - public static string Phone = nameof(Phone); - public static string Photo = nameof(Photo); - public static string Photo2 = nameof(Photo2); - public static string Photo2Add = nameof(Photo2Add); - public static string Photo2Fill = nameof(Photo2Fill); - public static string Photo2Remove = nameof(Photo2Remove); - public static string PhotoBlock = nameof(PhotoBlock); - public static string PhotoCollection = nameof(PhotoCollection); - public static string PhotoError = nameof(PhotoError); - public static string PhotoVideoMedia = nameof(PhotoVideoMedia); - public static string Picture = nameof(Picture); - public static string PictureCenter = nameof(PictureCenter); - public static string PictureFill = nameof(PictureFill); - public static string PictureLibrary = nameof(PictureLibrary); - public static string PicturePosition = nameof(PicturePosition); - public static string PictureStretch = nameof(PictureStretch); - public static string PictureTile = nameof(PictureTile); - public static string PieDouble = nameof(PieDouble); - public static string PieSingle = nameof(PieSingle); - public static string PieSingleSolid = nameof(PieSingleSolid); - public static string Pill = nameof(Pill); - public static string Pin = nameof(Pin); - public static string PinNavMenu = nameof(PinNavMenu); - public static string Pinned = nameof(Pinned); - public static string PinnedFill = nameof(PinnedFill); - public static string PinnedSolid = nameof(PinnedSolid); - public static string PinOff = nameof(PinOff); - public static string PinOffSolid = nameof(PinOffSolid); - public static string PinSolid = nameof(PinSolid); - public static string PinSolid12 = nameof(PinSolid12); - public static string PinSolidOff12 = nameof(PinSolidOff12); - public static string PinToTab = nameof(PinToTab); - public static string PivotChart = nameof(PivotChart); - public static string PlainText = nameof(PlainText); - public static string PlannerLogo = nameof(PlannerLogo); - public static string PlanView = nameof(PlanView); - public static string Play = nameof(Play); - public static string PlaybackRate1x = nameof(PlaybackRate1x); - public static string PlayerSettings = nameof(PlayerSettings); - public static string PlaylistMusic = nameof(PlaylistMusic); - public static string PlayResume = nameof(PlayResume); - public static string PlayReverse = nameof(PlayReverse); - public static string PlayReverseResume = nameof(PlayReverseResume); - public static string PlaySolid = nameof(PlaySolid); - public static string Plug = nameof(Plug); - public static string PlugConnected = nameof(PlugConnected); - public static string PlugDisconnected = nameof(PlugDisconnected); - public static string PlugSolid = nameof(PlugSolid); - public static string POI = nameof(POI); - public static string POISolid = nameof(POISolid); - public static string PollResults = nameof(PollResults); - public static string PopExpand = nameof(PopExpand); - public static string PortalAppTemplate32 = nameof(PortalAppTemplate32); - public static string PostUpdate = nameof(PostUpdate); - public static string PowerApps = nameof(PowerApps); - public static string PowerApps2Logo = nameof(PowerApps2Logo); - public static string PowerAppsLogo = nameof(PowerAppsLogo); - public static string PowerAppsTemplate = nameof(PowerAppsTemplate); - public static string PowerAutomateLogo = nameof(PowerAutomateLogo); - public static string PowerBILogo = nameof(PowerBILogo); - public static string PowerBILogo16 = nameof(PowerBILogo16); - public static string PowerBILogoBackplate16 = nameof(PowerBILogoBackplate16); - public static string PowerButton = nameof(PowerButton); - public static string PowerPointDocument = nameof(PowerPointDocument); - public static string PowerPointLogo = nameof(PowerPointLogo); - public static string PowerPointLogo16 = nameof(PowerPointLogo16); - public static string PowerPointLogoInverse = nameof(PowerPointLogoInverse); - public static string PowerPointLogoInverse16 = nameof(PowerPointLogoInverse16); - public static string PowerShell = nameof(PowerShell); - public static string PowerShell2 = nameof(PowerShell2); - public static string PowerStandby = nameof(PowerStandby); - public static string PowerVirtualAgentsLogo = nameof(PowerVirtualAgentsLogo); - public static string Precipitation = nameof(Precipitation); - public static string PresenceChickletVideo = nameof(PresenceChickletVideo); - public static string Presentation = nameof(Presentation); - public static string Presentation12 = nameof(Presentation12); - public static string Preview = nameof(Preview); - public static string PreviewBelow = nameof(PreviewBelow); - public static string PreviewLink = nameof(PreviewLink); - public static string PreviewSideBySide = nameof(PreviewSideBySide); - public static string Previous = nameof(Previous); - public static string PrimaryCalendar = nameof(PrimaryCalendar); - public static string Print = nameof(Print); - public static string PrintFaxPrinterFile = nameof(PrintFaxPrinterFile); - public static string Priority = nameof(Priority); - public static string Process = nameof(Process); - public static string ProcessAdvisor = nameof(ProcessAdvisor); - public static string Processing = nameof(Processing); - public static string ProcessingCancel = nameof(ProcessingCancel); - public static string ProcessingPause = nameof(ProcessingPause); - public static string ProcessingRun = nameof(ProcessingRun); - public static string ProcessMap = nameof(ProcessMap); - public static string ProcessMetaTask = nameof(ProcessMetaTask); - public static string Product = nameof(Product); - public static string ProductCatalog = nameof(ProductCatalog); - public static string ProductionFloorManagement = nameof(ProductionFloorManagement); - public static string ProductList = nameof(ProductList); - public static string ProductRelease = nameof(ProductRelease); - public static string ProductVariant = nameof(ProductVariant); - public static string ProductWarning = nameof(ProductWarning); - public static string ProfileSearch = nameof(ProfileSearch); - public static string ProFootball = nameof(ProFootball); - public static string ProgressLoopInner = nameof(ProgressLoopInner); - public static string ProgressLoopOuter = nameof(ProgressLoopOuter); - public static string ProgressRing5 = nameof(ProgressRing5); - public static string ProgressRingDots = nameof(ProgressRingDots); - public static string ProHockey = nameof(ProHockey); - public static string ProjectCollection = nameof(ProjectCollection); - public static string ProjectDocument = nameof(ProjectDocument); - public static string ProjectLogo16 = nameof(ProjectLogo16); - public static string ProjectLogo32 = nameof(ProjectLogo32); - public static string ProjectLogoInverse = nameof(ProjectLogoInverse); - public static string ProjectManagement = nameof(ProjectManagement); - public static string PromotedDatabase = nameof(PromotedDatabase); - public static string Pronouns = nameof(Pronouns); - public static string ProtectedDocument = nameof(ProtectedDocument); - public static string ProtectionCenterLogo32 = nameof(ProtectionCenterLogo32); - public static string ProtectRestrict = nameof(ProtectRestrict); - public static string ProvisioningPackage = nameof(ProvisioningPackage); - public static string PublicCalendar = nameof(PublicCalendar); - public static string PublicContactCard = nameof(PublicContactCard); - public static string PublicContactCardMirrored = nameof(PublicContactCardMirrored); - public static string PublicEmail = nameof(PublicEmail); - public static string PublicFolder = nameof(PublicFolder); - public static string PublishContent = nameof(PublishContent); - public static string PublishCourse = nameof(PublishCourse); - public static string PublisherLogo = nameof(PublisherLogo); - public static string PublisherLogo16 = nameof(PublisherLogo16); - public static string PublisherLogoInverse16 = nameof(PublisherLogoInverse16); - public static string Puzzle = nameof(Puzzle); - public static string PY = nameof(PY); - public static string PythonLanguage = nameof(PythonLanguage); - public static string QandA = nameof(QandA); - public static string QandAMirror = nameof(QandAMirror); - public static string QRCode = nameof(QRCode); - public static string QuadColumn = nameof(QuadColumn); - public static string Quantity = nameof(Quantity); - public static string QuarterCircle = nameof(QuarterCircle); - public static string QueryList = nameof(QueryList); - public static string Questionnaire = nameof(Questionnaire); - public static string QuestionnaireMirrored = nameof(QuestionnaireMirrored); - public static string QueueAdvanced = nameof(QueueAdvanced); - public static string QuickNote = nameof(QuickNote); - public static string QuickNoteSolid = nameof(QuickNoteSolid); - public static string Quotes = nameof(Quotes); - public static string R = nameof(R); - public static string RadioBtnOff = nameof(RadioBtnOff); - public static string RadioBtnOn = nameof(RadioBtnOn); - public static string RadioBullet = nameof(RadioBullet); - public static string Rain = nameof(Rain); - public static string RainShowersDay = nameof(RainShowersDay); - public static string RainShowersNight = nameof(RainShowersNight); - public static string RainSnow = nameof(RainSnow); - public static string Rate = nameof(Rate); - public static string RawSource = nameof(RawSource); - public static string Read = nameof(Read); - public static string ReadingMode = nameof(ReadingMode); - public static string ReadingModeSolid = nameof(ReadingModeSolid); - public static string ReadOutLoud = nameof(ReadOutLoud); - public static string RealEstate = nameof(RealEstate); - public static string ReceiptCheck = nameof(ReceiptCheck); - public static string ReceiptForward = nameof(ReceiptForward); - public static string ReceiptProcessing = nameof(ReceiptProcessing); - public static string ReceiptReply = nameof(ReceiptReply); - public static string ReceiptTentative = nameof(ReceiptTentative); - public static string ReceiptTentativeMirrored = nameof(ReceiptTentativeMirrored); - public static string ReceiptUndelivered = nameof(ReceiptUndelivered); - public static string Recent = nameof(Recent); - public static string Record2 = nameof(Record2); - public static string RecordRouting = nameof(RecordRouting); - public static string RecruitmentManagement = nameof(RecruitmentManagement); - public static string RectangleShape = nameof(RectangleShape); - public static string RectangleShapeSolid = nameof(RectangleShapeSolid); - public static string RectangularClipping = nameof(RectangularClipping); - public static string RecurringEvent = nameof(RecurringEvent); - public static string RecurringTask = nameof(RecurringTask); - public static string RecycleBin = nameof(RecycleBin); - public static string Redeploy = nameof(Redeploy); - public static string RedEye = nameof(RedEye); - public static string RedEye12 = nameof(RedEye12); - public static string Redo = nameof(Redo); - public static string Refresh = nameof(Refresh); - public static string RegistryEditor = nameof(RegistryEditor); - public static string Relationship = nameof(Relationship); - public static string ReleaseDefinition = nameof(ReleaseDefinition); - public static string ReleaseGate = nameof(ReleaseGate); - public static string ReleaseGateCheck = nameof(ReleaseGateCheck); - public static string ReleaseGateError = nameof(ReleaseGateError); - public static string ReminderGroup = nameof(ReminderGroup); - public static string ReminderPerson = nameof(ReminderPerson); - public static string ReminderTime = nameof(ReminderTime); - public static string Remote = nameof(Remote); - public static string RemoteApplication = nameof(RemoteApplication); - public static string Remove = nameof(Remove); - public static string RemoveContent = nameof(RemoveContent); - public static string RemoveEvent = nameof(RemoveEvent); - public static string RemoveFilter = nameof(RemoveFilter); - public static string RemoveFrom = nameof(RemoveFrom); - public static string RemoveFromShoppingList = nameof(RemoveFromShoppingList); - public static string RemoveFromTrash = nameof(RemoveFromTrash); - public static string RemoveLink = nameof(RemoveLink); - public static string RemoveLinkChain = nameof(RemoveLinkChain); - public static string RemoveLinkX = nameof(RemoveLinkX); - public static string RemoveOccurrence = nameof(RemoveOccurrence); - public static string Rename = nameof(Rename); - public static string RenewalCurrent = nameof(RenewalCurrent); - public static string RenewalFuture = nameof(RenewalFuture); - public static string ReopenPages = nameof(ReopenPages); - public static string Repair = nameof(Repair); - public static string RepeatAll = nameof(RepeatAll); - public static string RepeatHeaderRows = nameof(RepeatHeaderRows); - public static string RepeatOne = nameof(RepeatOne); - public static string Reply = nameof(Reply); - public static string ReplyAll = nameof(ReplyAll); - public static string ReplyAllAlt = nameof(ReplyAllAlt); - public static string ReplyAllMirrored = nameof(ReplyAllMirrored); - public static string ReplyAlt = nameof(ReplyAlt); - public static string ReplyMirrored = nameof(ReplyMirrored); - public static string Repo = nameof(Repo); - public static string ReportAdd = nameof(ReportAdd); - public static string ReportAlert = nameof(ReportAlert); - public static string ReportAlertMirrored = nameof(ReportAlertMirrored); - public static string ReportDocument = nameof(ReportDocument); - public static string ReportHacked = nameof(ReportHacked); - public static string ReportLibrary = nameof(ReportLibrary); - public static string ReportLibraryMirrored = nameof(ReportLibraryMirrored); - public static string ReportLock = nameof(ReportLock); - public static string ReportTrophy = nameof(ReportTrophy); - public static string ReportWarning = nameof(ReportWarning); - public static string RepoSolid = nameof(RepoSolid); - public static string Rerun = nameof(Rerun); - public static string ReservationOrders = nameof(ReservationOrders); - public static string Reset = nameof(Reset); - public static string ResetDevice = nameof(ResetDevice); - public static string ResponsesMenu = nameof(ResponsesMenu); - public static string ReturnKey = nameof(ReturnKey); - public static string ReturnToSession = nameof(ReturnToSession); - public static string RevenueManagement = nameof(RevenueManagement); - public static string ReviewRequestMirroredSolid = nameof(ReviewRequestMirroredSolid); - public static string ReviewRequestSolid = nameof(ReviewRequestSolid); - public static string ReviewResponseSolid = nameof(ReviewResponseSolid); - public static string ReviewSolid = nameof(ReviewSolid); - public static string RevToggleKey = nameof(RevToggleKey); - public static string RewardsLogo = nameof(RewardsLogo); - public static string RewardsLogoArt64 = nameof(RewardsLogoArt64); - public static string RewardsLogoSolid = nameof(RewardsLogoSolid); - public static string Rewind = nameof(Rewind); - public static string RewindEightX = nameof(RewindEightX); - public static string RewindFourX = nameof(RewindFourX); - public static string RewindOneFiveX = nameof(RewindOneFiveX); - public static string RewindOneX = nameof(RewindOneX); - public static string RewindPointFiveX = nameof(RewindPointFiveX); - public static string RewindTwoX = nameof(RewindTwoX); - public static string Ribbon = nameof(Ribbon); - public static string Ribbon2 = nameof(Ribbon2); - public static string RibbonSolid = nameof(RibbonSolid); - public static string RightDoubleQuote = nameof(RightDoubleQuote); - public static string RightKey = nameof(RightKey); - public static string RightTriangle = nameof(RightTriangle); - public static string Ringer = nameof(Ringer); - public static string RingerActive = nameof(RingerActive); - public static string RingerOff = nameof(RingerOff); - public static string RingerRemove = nameof(RingerRemove); - public static string RingerSolid = nameof(RingerSolid); - public static string Robot = nameof(Robot); - public static string Rocket = nameof(Rocket); - public static string Room = nameof(Room); - public static string Rotate = nameof(Rotate); - public static string Rotate90Clockwise = nameof(Rotate90Clockwise); - public static string Rotate90CounterClockwise = nameof(Rotate90CounterClockwise); - public static string RowsChild = nameof(RowsChild); - public static string RowsGroup = nameof(RowsGroup); - public static string RssFeed = nameof(RssFeed); - public static string Rugby = nameof(Rugby); - public static string Running = nameof(Running); - public static string Sad = nameof(Sad); - public static string SadSolid = nameof(SadSolid); - public static string SamsungGallery = nameof(SamsungGallery); - public static string Save = nameof(Save); - public static string SaveAll = nameof(SaveAll); - public static string SaveAndClose = nameof(SaveAndClose); - public static string SaveAndPublish = nameof(SaveAndPublish); - public static string SaveAs = nameof(SaveAs); - public static string SavedOffline = nameof(SavedOffline); - public static string SaveTemplate = nameof(SaveTemplate); - public static string SaveToMobile = nameof(SaveToMobile); - public static string Savings = nameof(Savings); - public static string ScaleUp = nameof(ScaleUp); - public static string ScaleVolume = nameof(ScaleVolume); - public static string ScatterChart = nameof(ScatterChart); - public static string ScheduleEventAction = nameof(ScheduleEventAction); - public static string SchoolDataSyncLogo = nameof(SchoolDataSyncLogo); - public static string ScopeTemplate = nameof(ScopeTemplate); - public static string Screen = nameof(Screen); - public static string ScreenCast = nameof(ScreenCast); - public static string ScreenPreviewOn = nameof(ScreenPreviewOn); - public static string ScreenTime = nameof(ScreenTime); - public static string Script = nameof(Script); - public static string ScrollUpDown = nameof(ScrollUpDown); - public static string SDCard = nameof(SDCard); - public static string Search = nameof(Search); - public static string SearchAndApps = nameof(SearchAndApps); - public static string SearchArt64 = nameof(SearchArt64); - public static string SearchBookmark = nameof(SearchBookmark); - public static string SearchCalendar = nameof(SearchCalendar); - public static string SearchData = nameof(SearchData); - public static string SearchIssue = nameof(SearchIssue); - public static string SearchIssueMirrored = nameof(SearchIssueMirrored); - public static string SearchNearby = nameof(SearchNearby); - public static string SecondaryNav = nameof(SecondaryNav); - public static string Section = nameof(Section); - public static string Sections = nameof(Sections); - public static string SecurityCamera = nameof(SecurityCamera); - public static string SecurityGroup = nameof(SecurityGroup); - public static string SecurityTest = nameof(SecurityTest); - public static string SeeDo = nameof(SeeDo); - public static string SelectAll = nameof(SelectAll); - public static string Sell = nameof(Sell); - public static string SemiboldWeight = nameof(SemiboldWeight); - public static string Send = nameof(Send); - public static string SendMirrored = nameof(SendMirrored); - public static string SentimentAnalysis = nameof(SentimentAnalysis); - public static string Separator = nameof(Separator); - public static string Server = nameof(Server); - public static string ServerEnvironment = nameof(ServerEnvironment); - public static string ServerProcesses = nameof(ServerProcesses); - public static string ServiceActivity = nameof(ServiceActivity); - public static string ServiceOff = nameof(ServiceOff); - public static string SetAction = nameof(SetAction); - public static string Settings = nameof(Settings); - public static string SettingsAdd = nameof(SettingsAdd); - public static string SettingsSecure = nameof(SettingsSecure); - public static string SettingsSync = nameof(SettingsSync); - public static string ShakeDevice = nameof(ShakeDevice); - public static string Shapes = nameof(Shapes); - public static string ShapeSolid = nameof(ShapeSolid); - public static string Share = nameof(Share); - public static string SharedDatabase = nameof(SharedDatabase); - public static string SharedNotes = nameof(SharedNotes); - public static string ShareiOS = nameof(ShareiOS); - public static string SharePoint2013LogoInverse = nameof(SharePoint2013LogoInverse); - public static string SharePointAppIcon16 = nameof(SharePointAppIcon16); - public static string SharePointLogo = nameof(SharePointLogo); - public static string SharePointLogoInverse = nameof(SharePointLogoInverse); - public static string Shield = nameof(Shield); - public static string ShieldAlert = nameof(ShieldAlert); - public static string ShieldSolid = nameof(ShieldSolid); - public static string Shirt = nameof(Shirt); - public static string Shop = nameof(Shop); - public static string ShopBrand = nameof(ShopBrand); - public static string ShoppingCart = nameof(ShoppingCart); - public static string ShoppingCartSolid = nameof(ShoppingCartSolid); - public static string ShopServer = nameof(ShopServer); - public static string Showers = nameof(Showers); - public static string ShowGrid = nameof(ShowGrid); - public static string ShowResults = nameof(ShowResults); - public static string ShowResultsMirrored = nameof(ShowResultsMirrored); - public static string ShowTimeAs = nameof(ShowTimeAs); - public static string ShowVisualFilter = nameof(ShowVisualFilter); - public static string SidePanel = nameof(SidePanel); - public static string SidePanelMirrored = nameof(SidePanelMirrored); - public static string Signin = nameof(Signin); - public static string SignOut = nameof(SignOut); - public static string SimplifiedView = nameof(SimplifiedView); - public static string SingleBookmark = nameof(SingleBookmark); - public static string SingleBookmarkSolid = nameof(SingleBookmarkSolid); - public static string SingleColumn = nameof(SingleColumn); - public static string SingleColumnEdit = nameof(SingleColumnEdit); - public static string SIPMove = nameof(SIPMove); - public static string SiteScan = nameof(SiteScan); - public static string SizeLegacy = nameof(SizeLegacy); - public static string SkipBack10 = nameof(SkipBack10); - public static string SkipForward30 = nameof(SkipForward30); - public static string SkiResorts = nameof(SkiResorts); - public static string SkypeArrow = nameof(SkypeArrow); - public static string SkypeCheck = nameof(SkypeCheck); - public static string SkypeCircleArrow = nameof(SkypeCircleArrow); - public static string SkypeCircleCheck = nameof(SkypeCircleCheck); - public static string SkypeCircleClock = nameof(SkypeCircleClock); - public static string SkypeCircleMinus = nameof(SkypeCircleMinus); - public static string SkypeCircleSlash = nameof(SkypeCircleSlash); - public static string SkypeClock = nameof(SkypeClock); - public static string SkypeForBusinessLogo = nameof(SkypeForBusinessLogo); - public static string SkypeForBusinessLogo16 = nameof(SkypeForBusinessLogo16); - public static string SkypeForBusinessLogoFill = nameof(SkypeForBusinessLogoFill); - public static string SkypeForBusinessLogoFill16 = nameof(SkypeForBusinessLogoFill16); - public static string SkypeLogo = nameof(SkypeLogo); - public static string SkypeLogo16 = nameof(SkypeLogo16); - public static string SkypeMessage = nameof(SkypeMessage); - public static string SkypeMinus = nameof(SkypeMinus); - public static string SkypeSlash = nameof(SkypeSlash); - public static string Sleet = nameof(Sleet); - public static string Slider = nameof(Slider); - public static string SliderHandleSize = nameof(SliderHandleSize); - public static string SliderThumb = nameof(SliderThumb); - public static string Slideshow = nameof(Slideshow); - public static string SmartGlassRemote = nameof(SmartGlassRemote); - public static string SnapToGrid = nameof(SnapToGrid); - public static string Snooze = nameof(Snooze); - public static string Snow = nameof(Snow); - public static string Snowflake = nameof(Snowflake); - public static string SnowShowerDay = nameof(SnowShowerDay); - public static string SnowShowerNight = nameof(SnowShowerNight); - public static string Soccer = nameof(Soccer); - public static string SocialListeningLogo = nameof(SocialListeningLogo); - public static string Sort = nameof(Sort); - public static string SortDown = nameof(SortDown); - public static string SortLines = nameof(SortLines); - public static string SortLinesAscending = nameof(SortLinesAscending); - public static string SortUp = nameof(SortUp); - public static string Source = nameof(Source); - public static string Spacer = nameof(Spacer); - public static string Speakers = nameof(Speakers); - public static string SpecialEvent = nameof(SpecialEvent); - public static string Speech = nameof(Speech); - public static string SpeechOff = nameof(SpeechOff); - public static string SpeedHigh = nameof(SpeedHigh); - public static string Spelling = nameof(Spelling); - public static string Split = nameof(Split); - public static string SplitObject = nameof(SplitObject); - public static string Sprint = nameof(Sprint); - public static string SQLAnalyticsPool = nameof(SQLAnalyticsPool); - public static string SQLServerLogo = nameof(SQLServerLogo); - public static string Squalls = nameof(Squalls); - public static string SquareShape = nameof(SquareShape); - public static string SquareShapeSolid = nameof(SquareShapeSolid); - public static string SslCertificate = nameof(SslCertificate); - public static string Stack = nameof(Stack); - public static string StackColumnChart = nameof(StackColumnChart); - public static string StackedBarChart = nameof(StackedBarChart); - public static string StackedBarChartFull = nameof(StackedBarChartFull); - public static string StackedBarChartFullSettings = nameof(StackedBarChartFullSettings); - public static string StackedColumnChart2 = nameof(StackedColumnChart2); - public static string StackedColumnChart2Fill = nameof(StackedColumnChart2Fill); - public static string StackedLineChart = nameof(StackedLineChart); - public static string StackIndicator = nameof(StackIndicator); - public static string StaffNotebookLogo16 = nameof(StaffNotebookLogo16); - public static string StaffNotebookLogo32 = nameof(StaffNotebookLogo32); - public static string StaffNotebookLogoFill16 = nameof(StaffNotebookLogoFill16); - public static string StaffNotebookLogoFill32 = nameof(StaffNotebookLogoFill32); - public static string StaffNotebookLogoInverted16 = nameof(StaffNotebookLogoInverted16); - public static string StaffNotebookLogoInverted32 = nameof(StaffNotebookLogoInverted32); - public static string Starburst = nameof(Starburst); - public static string StarburstSolid = nameof(StarburstSolid); - public static string StatusCircleBlock = nameof(StatusCircleBlock); - public static string StatusCircleBlock2 = nameof(StatusCircleBlock2); - public static string StatusCircleCheckmark = nameof(StatusCircleCheckmark); - public static string StatusCircleErrorX = nameof(StatusCircleErrorX); - public static string StatusCircleExclamation = nameof(StatusCircleExclamation); - public static string StatusCircleInfo = nameof(StatusCircleInfo); - public static string StatusCircleInner = nameof(StatusCircleInner); - public static string StatusCircleOuter = nameof(StatusCircleOuter); - public static string StatusCircleQuestionMark = nameof(StatusCircleQuestionMark); - public static string StatusCircleRing = nameof(StatusCircleRing); - public static string StatusCircleSync = nameof(StatusCircleSync); - public static string StatusErrorFull = nameof(StatusErrorFull); - public static string StatusTriangle = nameof(StatusTriangle); - public static string StatusTriangleExclamation = nameof(StatusTriangleExclamation); - public static string StatusTriangleInner = nameof(StatusTriangleInner); - public static string StatusTriangleOuter = nameof(StatusTriangleOuter); - public static string Step = nameof(Step); - public static string StepBackward = nameof(StepBackward); - public static string StepInsert = nameof(StepInsert); - public static string StepInto = nameof(StepInto); - public static string StepOut = nameof(StepOut); - public static string StepOver = nameof(StepOver); - public static string StepShared = nameof(StepShared); - public static string StepSharedAdd = nameof(StepSharedAdd); - public static string StepSharedInsert = nameof(StepSharedInsert); - public static string StickyNotesOutlineAppIcon = nameof(StickyNotesOutlineAppIcon); - public static string StickyNotesSolidAppIcon = nameof(StickyNotesSolidAppIcon); - public static string StockDown = nameof(StockDown); - public static string StockUp = nameof(StockUp); - public static string Stop = nameof(Stop); - public static string StopSolid = nameof(StopSolid); - public static string Stopwatch = nameof(Stopwatch); - public static string StorageAccount = nameof(StorageAccount); - public static string StorageOptical = nameof(StorageOptical); - public static string StoreLogo16 = nameof(StoreLogo16); - public static string StoreLogoMed20 = nameof(StoreLogoMed20); - public static string Storyboard = nameof(Storyboard); - public static string StreamDiscover = nameof(StreamDiscover); - public static string Streaming = nameof(Streaming); - public static string StreamingDataflow = nameof(StreamingDataflow); - public static string StreamingDataset = nameof(StreamingDataset); - public static string StreamingOff = nameof(StreamingOff); - public static string StreamLogo = nameof(StreamLogo); - public static string StreamPlaylist = nameof(StreamPlaylist); - public static string Street = nameof(Street); - public static string StreetsideSplitMinimize = nameof(StreetsideSplitMinimize); - public static string Strikethrough = nameof(Strikethrough); - public static string StrikethroughKorean = nameof(StrikethroughKorean); - public static string Subscribe = nameof(Subscribe); - public static string Subscript = nameof(Subscript); - public static string SubstitutionsIn = nameof(SubstitutionsIn); - public static string SubtractShape = nameof(SubtractShape); - public static string Suitcase = nameof(Suitcase); - public static string SummaryChart = nameof(SummaryChart); - public static string SunAdd = nameof(SunAdd); - public static string Sunny = nameof(Sunny); - public static string SunQuestionMark = nameof(SunQuestionMark); - public static string Superscript = nameof(Superscript); - public static string SurveyQuestionResponse = nameof(SurveyQuestionResponse); - public static string SurveyQuestions = nameof(SurveyQuestions); - public static string SwayLogo16 = nameof(SwayLogo16); - public static string SwayLogo32 = nameof(SwayLogo32); - public static string SwayLogoFill16 = nameof(SwayLogoFill16); - public static string SwayLogoFill32 = nameof(SwayLogoFill32); - public static string SwayLogoInverse = nameof(SwayLogoInverse); - public static string Switch = nameof(Switch); - public static string SwitcherStartEnd = nameof(SwitcherStartEnd); - public static string SwitchUser = nameof(SwitchUser); - public static string Sync = nameof(Sync); - public static string SyncError = nameof(SyncError); - public static string SyncFolder = nameof(SyncFolder); - public static string SyncOccurrence = nameof(SyncOccurrence); - public static string SyncOccurrenceCancel = nameof(SyncOccurrenceCancel); - public static string SyncStatus = nameof(SyncStatus); - public static string SyncStatusSolid = nameof(SyncStatusSolid); - public static string SyncToPC = nameof(SyncToPC); - public static string System = nameof(System); - public static string Tab = nameof(Tab); - public static string TabCenter = nameof(TabCenter); - public static string Table = nameof(Table); - public static string TableBrandedColumn = nameof(TableBrandedColumn); - public static string TableBrandedRow = nameof(TableBrandedRow); - public static string TableColumn = nameof(TableColumn); - public static string TableComputed = nameof(TableComputed); - public static string TableFirstColumn = nameof(TableFirstColumn); - public static string TableGroup = nameof(TableGroup); - public static string TableHeaderRow = nameof(TableHeaderRow); - public static string TableLastColumn = nameof(TableLastColumn); - public static string TableLink = nameof(TableLink); - public static string TablePermission = nameof(TablePermission); - public static string Tablet = nameof(Tablet); - public static string TabletMode = nameof(TabletMode); - public static string TableTotalRow = nameof(TableTotalRow); - public static string TabletSelected = nameof(TabletSelected); - public static string TabOneColumn = nameof(TabOneColumn); - public static string TabThreeColumn = nameof(TabThreeColumn); - public static string TabTwoColumn = nameof(TabTwoColumn); - public static string Tag = nameof(Tag); - public static string TagGroup = nameof(TagGroup); - public static string TagSolid = nameof(TagSolid); - public static string TagUnknown = nameof(TagUnknown); - public static string TagUnknown12 = nameof(TagUnknown12); - public static string TagUnknown12Mirror = nameof(TagUnknown12Mirror); - public static string TagUnknownMirror = nameof(TagUnknownMirror); - public static string Task = nameof(Task); - public static string TaskAdd = nameof(TaskAdd); - public static string Taskboard = nameof(Taskboard); - public static string TaskGroup = nameof(TaskGroup); - public static string TaskGroupMirrored = nameof(TaskGroupMirrored); - public static string TaskList = nameof(TaskList); - public static string TaskLogo = nameof(TaskLogo); - public static string TaskManager = nameof(TaskManager); - public static string TaskManagerMirrored = nameof(TaskManagerMirrored); - public static string TaskSolid = nameof(TaskSolid); - public static string Taxi = nameof(Taxi); - public static string TeamFavorite = nameof(TeamFavorite); - public static string TeamsLogo = nameof(TeamsLogo); - public static string TeamsLogo16 = nameof(TeamsLogo16); - public static string TeamsLogoInverse = nameof(TeamsLogoInverse); - public static string Teamwork = nameof(Teamwork); - public static string Teeth = nameof(Teeth); - public static string Telemarketer = nameof(Telemarketer); - public static string TemporaryAccessPass = nameof(TemporaryAccessPass); - public static string TemporaryUser = nameof(TemporaryUser); - public static string Tennis = nameof(Tennis); - public static string TestAdd = nameof(TestAdd); - public static string TestAutoSolid = nameof(TestAutoSolid); - public static string TestBeaker = nameof(TestBeaker); - public static string TestBeakerSolid = nameof(TestBeakerSolid); - public static string TestCase = nameof(TestCase); - public static string TestExploreSolid = nameof(TestExploreSolid); - public static string TestImpactSolid = nameof(TestImpactSolid); - public static string TestParameter = nameof(TestParameter); - public static string TestPlan = nameof(TestPlan); - public static string TestRemove = nameof(TestRemove); - public static string TestStep = nameof(TestStep); - public static string TestSuite = nameof(TestSuite); - public static string TestUserSolid = nameof(TestUserSolid); - public static string TextAlignBottom = nameof(TextAlignBottom); - public static string TextAlignMiddle = nameof(TextAlignMiddle); - public static string TextAlignTop = nameof(TextAlignTop); - public static string TextBox = nameof(TextBox); - public static string TextCallout = nameof(TextCallout); - public static string TextDocument = nameof(TextDocument); - public static string TextDocumentEdit = nameof(TextDocumentEdit); - public static string TextDocumentSettings = nameof(TextDocumentSettings); - public static string TextDocumentShared = nameof(TextDocumentShared); - public static string TextField = nameof(TextField); - public static string TextOverflow = nameof(TextOverflow); - public static string TextParagraphOption = nameof(TextParagraphOption); - public static string TextRecognition = nameof(TextRecognition); - public static string TextRotate270Degrees = nameof(TextRotate270Degrees); - public static string TextRotate90Degrees = nameof(TextRotate90Degrees); - public static string TextRotateHorizontal = nameof(TextRotateHorizontal); - public static string TextRotation = nameof(TextRotation); - public static string TFVCLogo = nameof(TFVCLogo); - public static string ThisPC = nameof(ThisPC); - public static string ThreeQuarterCircle = nameof(ThreeQuarterCircle); - public static string ThumbnailView = nameof(ThumbnailView); - public static string ThumbnailViewMirrored = nameof(ThumbnailViewMirrored); - public static string Thunderstorms = nameof(Thunderstorms); - public static string Ticket = nameof(Ticket); - public static string Tiles = nameof(Tiles); - public static string Tiles2 = nameof(Tiles2); - public static string TimeEntry = nameof(TimeEntry); - public static string TimeEntryTemplate = nameof(TimeEntryTemplate); - public static string Timeline = nameof(Timeline); - public static string TimelineDelivery = nameof(TimelineDelivery); - public static string TimelineMatrixView = nameof(TimelineMatrixView); - public static string TimelineProgress = nameof(TimelineProgress); - public static string TimePicker = nameof(TimePicker); - public static string Timer = nameof(Timer); - public static string TimeSheet = nameof(TimeSheet); - public static string Title = nameof(Title); - public static string TitleMirrored = nameof(TitleMirrored); - public static string ToDoLogoBottom = nameof(ToDoLogoBottom); - public static string ToDoLogoInverse = nameof(ToDoLogoInverse); - public static string ToDoLogoOutline = nameof(ToDoLogoOutline); - public static string ToDoLogoTop = nameof(ToDoLogoTop); - public static string ToggleBorder = nameof(ToggleBorder); - public static string ToggleFilled = nameof(ToggleFilled); - public static string ToggleLeft = nameof(ToggleLeft); - public static string ToggleRight = nameof(ToggleRight); - public static string ToggleThumb = nameof(ToggleThumb); - public static string Toll = nameof(Toll); - public static string Toolbox = nameof(Toolbox); - public static string Total = nameof(Total); - public static string Touch = nameof(Touch); - public static string TouchPointer = nameof(TouchPointer); - public static string Trackers = nameof(Trackers); - public static string TrackersMirrored = nameof(TrackersMirrored); - public static string Train = nameof(Train); - public static string TrainSolid = nameof(TrainSolid); - public static string TransferCall = nameof(TransferCall); - public static string Transition = nameof(Transition); - public static string TransitionEffect = nameof(TransitionEffect); - public static string TransitionPop = nameof(TransitionPop); - public static string TransitionPush = nameof(TransitionPush); - public static string Translate = nameof(Translate); - public static string Transportation = nameof(Transportation); - public static string Trending12 = nameof(Trending12); - public static string TriangleDown12 = nameof(TriangleDown12); - public static string TriangleLeft12 = nameof(TriangleLeft12); - public static string TriangleRight12 = nameof(TriangleRight12); - public static string TriangleShape = nameof(TriangleShape); - public static string TriangleShapeSolid = nameof(TriangleShapeSolid); - public static string TriangleSolid = nameof(TriangleSolid); - public static string TriangleSolidDown12 = nameof(TriangleSolidDown12); - public static string TriangleSolidLeft12 = nameof(TriangleSolidLeft12); - public static string TriangleSolidRight12 = nameof(TriangleSolidRight12); - public static string TriangleSolidUp12 = nameof(TriangleSolidUp12); - public static string TriangleUp12 = nameof(TriangleUp12); - public static string TriggerApproval = nameof(TriggerApproval); - public static string TriggerAuto = nameof(TriggerAuto); - public static string TriggerPhrase = nameof(TriggerPhrase); - public static string TriggerUser = nameof(TriggerUser); - public static string Trim = nameof(Trim); - public static string TrimEnd = nameof(TrimEnd); - public static string TrimStart = nameof(TrimStart); - public static string TripleColumn = nameof(TripleColumn); - public static string TripleColumnEdit = nameof(TripleColumnEdit); - public static string TripleColumnWide = nameof(TripleColumnWide); - public static string Trophy = nameof(Trophy); - public static string Trophy2 = nameof(Trophy2); - public static string Trophy2Solid = nameof(Trophy2Solid); - public static string TurnRight = nameof(TurnRight); - public static string TurnUserLeft = nameof(TurnUserLeft); - public static string TVMonitor = nameof(TVMonitor); - public static string TVMonitorSelected = nameof(TVMonitorSelected); - public static string TypeScriptLanguage = nameof(TypeScriptLanguage); - public static string Umbrella = nameof(Umbrella); - public static string UnavailableOffline = nameof(UnavailableOffline); - public static string Underline = nameof(Underline); - public static string UnderlineA = nameof(UnderlineA); - public static string UnderlineKorean = nameof(UnderlineKorean); - public static string UnderlineP = nameof(UnderlineP); - public static string UnderlineRussian = nameof(UnderlineRussian); - public static string UnderlineS = nameof(UnderlineS); - public static string UnderlineSerbian = nameof(UnderlineSerbian); - public static string Undo = nameof(Undo); - public static string Uneditable = nameof(Uneditable); - public static string Uneditable2 = nameof(Uneditable2); - public static string Uneditable2Mirrored = nameof(Uneditable2Mirrored); - public static string UneditableMirrored = nameof(UneditableMirrored); - public static string UneditableSolid12 = nameof(UneditableSolid12); - public static string UneditableSolidMirrored12 = nameof(UneditableSolidMirrored12); - public static string Unfavorite = nameof(Unfavorite); - public static string UngroupObject = nameof(UngroupObject); - public static string UniteShape = nameof(UniteShape); - public static string Unknown = nameof(Unknown); - public static string UnknownCall = nameof(UnknownCall); - public static string UnknownMirrored = nameof(UnknownMirrored); - public static string UnknownMirroredSolid = nameof(UnknownMirroredSolid); - public static string UnknownSolid = nameof(UnknownSolid); - public static string Unlock = nameof(Unlock); - public static string UnlockSolid = nameof(UnlockSolid); - public static string Unpin = nameof(Unpin); - public static string UnpublishContent = nameof(UnpublishContent); - public static string UnSetColor = nameof(UnSetColor); - public static string UnstackSelected = nameof(UnstackSelected); - public static string Unsubscribe = nameof(Unsubscribe); - public static string UnsyncFolder = nameof(UnsyncFolder); - public static string UnsyncOccurrence = nameof(UnsyncOccurrence); - public static string Untag = nameof(Untag); - public static string Up = nameof(Up); - public static string UpdateRestore = nameof(UpdateRestore); - public static string UpgradeAnalysis = nameof(UpgradeAnalysis); - public static string UpKey = nameof(UpKey); - public static string Upload = nameof(Upload); - public static string UpperCase = nameof(UpperCase); - public static string URLBlock = nameof(URLBlock); - public static string USB = nameof(USB); - public static string UserClapper = nameof(UserClapper); - public static string UserEvent = nameof(UserEvent); - public static string UserFollowed = nameof(UserFollowed); - public static string UserGauge = nameof(UserGauge); - public static string UserOptional = nameof(UserOptional); - public static string UserPause = nameof(UserPause); - public static string UserRemove = nameof(UserRemove); - public static string UserSync = nameof(UserSync); - public static string UserWarning = nameof(UserWarning); - public static string UserWindow = nameof(UserWindow); - public static string Vacation = nameof(Vacation); - public static string Vaccination = nameof(Vaccination); - public static string VaccinationRecent = nameof(VaccinationRecent); - public static string Variable = nameof(Variable); - public static string Variable2 = nameof(Variable2); - public static string Variable3 = nameof(Variable3); - public static string VariableGroup = nameof(VariableGroup); - public static string VB = nameof(VB); - public static string VennDiagram = nameof(VennDiagram); - public static string VerifiedBrand = nameof(VerifiedBrand); - public static string VerifiedBrandSolid = nameof(VerifiedBrandSolid); - public static string VersionControlPush = nameof(VersionControlPush); - public static string VerticalDistributeCenter = nameof(VerticalDistributeCenter); - public static string Video = nameof(Video); - public static string Video360Generic = nameof(Video360Generic); - public static string VideoAdd = nameof(VideoAdd); - public static string VideoLightOff = nameof(VideoLightOff); - public static string VideoOff = nameof(VideoOff); - public static string VideoOff2 = nameof(VideoOff2); - public static string VideoSearch = nameof(VideoSearch); - public static string VideoSolid = nameof(VideoSolid); - public static string View = nameof(View); - public static string ViewAll = nameof(ViewAll); - public static string ViewAll2 = nameof(ViewAll2); - public static string ViewDashboard = nameof(ViewDashboard); - public static string ViewInAR = nameof(ViewInAR); - public static string ViewList = nameof(ViewList); - public static string ViewListGroup = nameof(ViewListGroup); - public static string ViewListTree = nameof(ViewListTree); - public static string ViewOriginal = nameof(ViewOriginal); - public static string VirtualNetwork = nameof(VirtualNetwork); - public static string VisioDiagram = nameof(VisioDiagram); - public static string VisioDiagramSync = nameof(VisioDiagramSync); - public static string VisioDocument = nameof(VisioDocument); - public static string VisioLogo = nameof(VisioLogo); - public static string VisioLogo16 = nameof(VisioLogo16); - public static string VisioLogoInverse = nameof(VisioLogoInverse); - public static string VisioLogoInverse16 = nameof(VisioLogoInverse16); - public static string VisualBasicLanguage = nameof(VisualBasicLanguage); - public static string VisuallyImpaired = nameof(VisuallyImpaired); - public static string VisualsFolder = nameof(VisualsFolder); - public static string VisualsStore = nameof(VisualsStore); - public static string VisualStudioForWindows = nameof(VisualStudioForWindows); - public static string VisualStudioForWindowsAlt = nameof(VisualStudioForWindowsAlt); - public static string VivaTopicApp = nameof(VivaTopicApp); - public static string VoicemailForward = nameof(VoicemailForward); - public static string VoicemailIRM = nameof(VoicemailIRM); - public static string VoicemailReply = nameof(VoicemailReply); - public static string Volume0 = nameof(Volume0); - public static string Volume1 = nameof(Volume1); - public static string Volume2 = nameof(Volume2); - public static string Volume3 = nameof(Volume3); - public static string VolumeDisabled = nameof(VolumeDisabled); - public static string VSTSAltLogo1 = nameof(VSTSAltLogo1); - public static string VSTSAltLogo2 = nameof(VSTSAltLogo2); - public static string VSTSLogo = nameof(VSTSLogo); - public static string Waffle = nameof(Waffle); - public static string WaffleOffice365 = nameof(WaffleOffice365); - public static string WaitlistConfirm = nameof(WaitlistConfirm); - public static string WaitlistConfirmMirrored = nameof(WaitlistConfirmMirrored); - public static string Warning = nameof(Warning); - public static string Warning12 = nameof(Warning12); - public static string WarningSolid = nameof(WarningSolid); - public static string WavingHand = nameof(WavingHand); - public static string WebAppBuilderFragment = nameof(WebAppBuilderFragment); - public static string WebAppBuilderFragmentCreate = nameof(WebAppBuilderFragmentCreate); - public static string WebAppBuilderFragmentLock = nameof(WebAppBuilderFragmentLock); - public static string WebAppBuilderFragmentTest = nameof(WebAppBuilderFragmentTest); - public static string WebAppBuilderModule = nameof(WebAppBuilderModule); - public static string WebAppBuilderModuleLock = nameof(WebAppBuilderModuleLock); - public static string WebAppBuilderModuleTest = nameof(WebAppBuilderModuleTest); - public static string WebAppBuilderSlot = nameof(WebAppBuilderSlot); - public static string Webcam2 = nameof(Webcam2); - public static string Webcam2Off = nameof(Webcam2Off); - public static string WebComponents = nameof(WebComponents); - public static string WebEnvironment = nameof(WebEnvironment); - public static string WebPublish = nameof(WebPublish); - public static string WebSearch = nameof(WebSearch); - public static string Website = nameof(Website); - public static string WebTemplate = nameof(WebTemplate); - public static string Weights = nameof(Weights); - public static string Wheelchair = nameof(Wheelchair); - public static string Whiteboard = nameof(Whiteboard); - public static string WhiteBoardApp16 = nameof(WhiteBoardApp16); - public static string WhiteBoardApp32 = nameof(WhiteBoardApp32); - public static string WifiEthernet = nameof(WifiEthernet); - public static string WifiWarning4 = nameof(WifiWarning4); - public static string WindDirection = nameof(WindDirection); - public static string WindowEdit = nameof(WindowEdit); - public static string WindowsLogo = nameof(WindowsLogo); - public static string Wines = nameof(Wines); - public static string WipePhone = nameof(WipePhone); - public static string WordDocument = nameof(WordDocument); - public static string WordLogo = nameof(WordLogo); - public static string WordLogo16 = nameof(WordLogo16); - public static string WordLogoInverse = nameof(WordLogoInverse); - public static string WordLogoInverse16 = nameof(WordLogoInverse16); - public static string Work = nameof(Work); - public static string WorkFlow = nameof(WorkFlow); - public static string WorkforceManagement = nameof(WorkforceManagement); - public static string WorkItem = nameof(WorkItem); - public static string WorkItemAlert = nameof(WorkItemAlert); - public static string WorkItemBar = nameof(WorkItemBar); - public static string WorkItemBarSolid = nameof(WorkItemBarSolid); - public static string WorkItemBug = nameof(WorkItemBug); - public static string World = nameof(World); - public static string WorldClock = nameof(WorldClock); - public static string XPowerY = nameof(XPowerY); - public static string XRay = nameof(XRay); - public static string YammerLogo = nameof(YammerLogo); - public static string ZeroDayCalendar = nameof(ZeroDayCalendar); - public static string ZeroDayPatch = nameof(ZeroDayPatch); - public static string ZipFolder = nameof(ZipFolder); - public static string Zoom = nameof(Zoom); - public static string ZoomIn = nameof(ZoomIn); - public static string ZoomOut = nameof(ZoomOut); - public static string ZoomToFit = nameof(ZoomToFit); - public static string ZoomToFitAlt = nameof(ZoomToFitAlt); + public const string _12PointStar = "12PointStar"; + public const string _6PointStar = "6PointStar"; + public const string AADLogo = nameof(AADLogo); + public const string Accept = nameof(Accept); + public const string AcceptMedium = nameof(AcceptMedium); + public const string AccessibilityChecker = nameof(AccessibilityChecker); + public const string AccessLogo = nameof(AccessLogo); + public const string AccountActivity = nameof(AccountActivity); + public const string AccountBrowser = nameof(AccountBrowser); + public const string AccountManagement = nameof(AccountManagement); + public const string Accounts = nameof(Accounts); + public const string ActionCenter = nameof(ActionCenter); + public const string ActivateOrders = nameof(ActivateOrders); + public const string ActivityFeed = nameof(ActivityFeed); + public const string Add = nameof(Add); + public const string AddBookmark = nameof(AddBookmark); + public const string AddConnection = nameof(AddConnection); + public const string AddEvent = nameof(AddEvent); + public const string AddFavorite = nameof(AddFavorite); + public const string AddFavoriteFill = nameof(AddFavoriteFill); + public const string AddField = nameof(AddField); + public const string AddFriend = nameof(AddFriend); + public const string AddGroup = nameof(AddGroup); + public const string AddHome = nameof(AddHome); + public const string AddIn = nameof(AddIn); + public const string AddLink = nameof(AddLink); + public const string AddMedium = nameof(AddMedium); + public const string AddMultiple = nameof(AddMultiple); + public const string AddNotes = nameof(AddNotes); + public const string AddOnlineMeeting = nameof(AddOnlineMeeting); + public const string AddPhone = nameof(AddPhone); + public const string AddReaction = nameof(AddReaction); + public const string AddSpaceAfter = nameof(AddSpaceAfter); + public const string AddSpaceBefore = nameof(AddSpaceBefore); + public const string AddTable = nameof(AddTable); + public const string AddTo = nameof(AddTo); + public const string AddToShoppingList = nameof(AddToShoppingList); + public const string AddWork = nameof(AddWork); + public const string Admin = nameof(Admin); + public const string AdminALogo32 = nameof(AdminALogo32); + public const string AdminALogoFill32 = nameof(AdminALogoFill32); + public const string AdminALogoInverse32 = nameof(AdminALogoInverse32); + public const string AdminCLogoInverse32 = nameof(AdminCLogoInverse32); + public const string AdminDLogoInverse32 = nameof(AdminDLogoInverse32); + public const string AdminELogoInverse32 = nameof(AdminELogoInverse32); + public const string AdminLLogoInverse32 = nameof(AdminLLogoInverse32); + public const string AdminMLogoInverse32 = nameof(AdminMLogoInverse32); + public const string AdminOLogoInverse32 = nameof(AdminOLogoInverse32); + public const string AdminPLogoInverse32 = nameof(AdminPLogoInverse32); + public const string AdminSLogoInverse32 = nameof(AdminSLogoInverse32); + public const string AdminYLogoInverse32 = nameof(AdminYLogoInverse32); + public const string Airplane = nameof(Airplane); + public const string AirplaneSolid = nameof(AirplaneSolid); + public const string AirTickets = nameof(AirTickets); + public const string AlarmClock = nameof(AlarmClock); + public const string Album = nameof(Album); + public const string AlbumRemove = nameof(AlbumRemove); + public const string AlertSettings = nameof(AlertSettings); + public const string AlertSolid = nameof(AlertSolid); + public const string AlignCenter = nameof(AlignCenter); + public const string AlignHorizontalCenter = nameof(AlignHorizontalCenter); + public const string AlignHorizontalLeft = nameof(AlignHorizontalLeft); + public const string AlignHorizontalRight = nameof(AlignHorizontalRight); + public const string AlignJustify = nameof(AlignJustify); + public const string AlignLeft = nameof(AlignLeft); + public const string AlignRight = nameof(AlignRight); + public const string AlignVerticalBottom = nameof(AlignVerticalBottom); + public const string AlignVerticalCenter = nameof(AlignVerticalCenter); + public const string AlignVerticalTop = nameof(AlignVerticalTop); + public const string AllApps = nameof(AllApps); + public const string AllAppsMirrored = nameof(AllAppsMirrored); + public const string AllCurrency = nameof(AllCurrency); + public const string AltText = nameof(AltText); + public const string AnalyticsLogo = nameof(AnalyticsLogo); + public const string AnalyticsQuery = nameof(AnalyticsQuery); + public const string AnalyticsReport = nameof(AnalyticsReport); + public const string AnalyticsView = nameof(AnalyticsView); + public const string AnchorLock = nameof(AnchorLock); + public const string Annotation = nameof(Annotation); + public const string AppIconDefault = nameof(AppIconDefault); + public const string AppIconDefaultAdd = nameof(AppIconDefaultAdd); + public const string AppIconDefaultEdit = nameof(AppIconDefaultEdit); + public const string AppIconDefaultList = nameof(AppIconDefaultList); + public const string AppIconSecure = nameof(AppIconSecure); + public const string AppsContent = nameof(AppsContent); + public const string Archive = nameof(Archive); + public const string ArchiveUndo = nameof(ArchiveUndo); + public const string AreaChart = nameof(AreaChart); + public const string ArrangeBringForward = nameof(ArrangeBringForward); + public const string ArrangeBringToFront = nameof(ArrangeBringToFront); + public const string ArrangeByFrom = nameof(ArrangeByFrom); + public const string ArrangeSendBackward = nameof(ArrangeSendBackward); + public const string ArrangeSendToBack = nameof(ArrangeSendToBack); + public const string Arrivals = nameof(Arrivals); + public const string ArrowDownRight8 = nameof(ArrowDownRight8); + public const string ArrowDownRightMirrored8 = nameof(ArrowDownRightMirrored8); + public const string ArrowTallDownLeft = nameof(ArrowTallDownLeft); + public const string ArrowTallDownRight = nameof(ArrowTallDownRight); + public const string ArrowTallUpLeft = nameof(ArrowTallUpLeft); + public const string ArrowTallUpRight = nameof(ArrowTallUpRight); + public const string ArrowUpRight = nameof(ArrowUpRight); + public const string ArrowUpRight8 = nameof(ArrowUpRight8); + public const string ArrowUpRightMirrored8 = nameof(ArrowUpRightMirrored8); + public const string Articles = nameof(Articles); + public const string Ascending = nameof(Ascending); + public const string AspectRatio = nameof(AspectRatio); + public const string AssessmentGroup = nameof(AssessmentGroup); + public const string AssessmentGroupTemplate = nameof(AssessmentGroupTemplate); + public const string AssetLibrary = nameof(AssetLibrary); + public const string Assign = nameof(Assign); + public const string AssignPolicy = nameof(AssignPolicy); + public const string Asterisk = nameof(Asterisk); + public const string AsteriskSolid = nameof(AsteriskSolid); + public const string ATPLogo = nameof(ATPLogo); + public const string Attach = nameof(Attach); + public const string AustralianRules = nameof(AustralianRules); + public const string AuthenticatorApp = nameof(AuthenticatorApp); + public const string AutoDeploySettings = nameof(AutoDeploySettings); + public const string AutoEnhanceOff = nameof(AutoEnhanceOff); + public const string AutoEnhanceOn = nameof(AutoEnhanceOn); + public const string AutoFillTemplate = nameof(AutoFillTemplate); + public const string AutoFitContents = nameof(AutoFitContents); + public const string AutoFitWindow = nameof(AutoFitWindow); + public const string AutoHeight = nameof(AutoHeight); + public const string AutomateFlow = nameof(AutomateFlow); + public const string AutoRacing = nameof(AutoRacing); + public const string AwayStatus = nameof(AwayStatus); + public const string AzureAPIManagement = nameof(AzureAPIManagement); + public const string AzureDataExplorer = nameof(AzureDataExplorer); + public const string AzureIcon = nameof(AzureIcon); + public const string AzureKeyVault = nameof(AzureKeyVault); + public const string AzureServiceEndpoint = nameof(AzureServiceEndpoint); + public const string Back = nameof(Back); + public const string BackgroundColor = nameof(BackgroundColor); + public const string Backlog = nameof(Backlog); + public const string BacklogBoard = nameof(BacklogBoard); + public const string BacklogList = nameof(BacklogList); + public const string BackToWindow = nameof(BackToWindow); + public const string Badge = nameof(Badge); + public const string Balloons = nameof(Balloons); + public const string Bank = nameof(Bank); + public const string BankSolid = nameof(BankSolid); + public const string BarChart3 = nameof(BarChart3); + public const string BarChart3One = nameof(BarChart3One); + public const string BarChart3Two = nameof(BarChart3Two); + public const string BarChart3Zero = nameof(BarChart3Zero); + public const string BarChart4 = nameof(BarChart4); + public const string BarChartHorizontal = nameof(BarChartHorizontal); + public const string BarChartVertical = nameof(BarChartVertical); + public const string BarChartVerticalEdit = nameof(BarChartVerticalEdit); + public const string BarChartVerticalFill = nameof(BarChartVerticalFill); + public const string BarChartVerticalFilter = nameof(BarChartVerticalFilter); + public const string BarChartVerticalFilterSolid = nameof(BarChartVerticalFilterSolid); + public const string Baseball = nameof(Baseball); + public const string BeerMug = nameof(BeerMug); + public const string BIDashboard = nameof(BIDashboard); + public const string BidiLtr = nameof(BidiLtr); + public const string Bidirectional = nameof(Bidirectional); + public const string BidiRtl = nameof(BidiRtl); + public const string Bill = nameof(Bill); + public const string BingLogo = nameof(BingLogo); + public const string BirthdayCake = nameof(BirthdayCake); + public const string BlobStorage = nameof(BlobStorage); + public const string BlockContact = nameof(BlockContact); + public const string Blocked = nameof(Blocked); + public const string Blocked12 = nameof(Blocked12); + public const string Blocked2 = nameof(Blocked2); + public const string Blocked2Solid = nameof(Blocked2Solid); + public const string BlockedSite = nameof(BlockedSite); + public const string BlockedSiteSolid12 = nameof(BlockedSiteSolid12); + public const string BlockedSolid = nameof(BlockedSolid); + public const string Blog = nameof(Blog); + public const string BlowingSnow = nameof(BlowingSnow); + public const string Blur = nameof(Blur); + public const string Boards = nameof(Boards); + public const string Bold = nameof(Bold); + public const string BoldBulgarian = nameof(BoldBulgarian); + public const string BoldF = nameof(BoldF); + public const string BoldG = nameof(BoldG); + public const string BoldK = nameof(BoldK); + public const string BoldKazakh = nameof(BoldKazakh); + public const string BoldKorean = nameof(BoldKorean); + public const string BoldN = nameof(BoldN); + public const string BoldP = nameof(BoldP); + public const string BoldRussion = nameof(BoldRussion); + public const string BoldSerbian = nameof(BoldSerbian); + public const string BoldT = nameof(BoldT); + public const string BookAnswers = nameof(BookAnswers); + public const string BookingsLogo = nameof(BookingsLogo); + public const string BookmarkReport = nameof(BookmarkReport); + public const string Bookmarks = nameof(Bookmarks); + public const string BookmarksMirrored = nameof(BookmarksMirrored); + public const string BooleanData = nameof(BooleanData); + public const string BorderAll = nameof(BorderAll); + public const string BorderDash = nameof(BorderDash); + public const string BorderDot = nameof(BorderDot); + public const string BorderInside = nameof(BorderInside); + public const string BorderInsideHorizontal = nameof(BorderInsideHorizontal); + public const string BorderInsideVertical = nameof(BorderInsideVertical); + public const string BorderNone = nameof(BorderNone); + public const string BoxAdditionSolid = nameof(BoxAdditionSolid); + public const string BoxCheckmarkSolid = nameof(BoxCheckmarkSolid); + public const string BoxMultiplySolid = nameof(BoxMultiplySolid); + public const string BoxPlaySolid = nameof(BoxPlaySolid); + public const string BoxSubtractSolid = nameof(BoxSubtractSolid); + public const string BranchCommit = nameof(BranchCommit); + public const string BranchCompare = nameof(BranchCompare); + public const string BranchFork = nameof(BranchFork); + public const string BranchFork2 = nameof(BranchFork2); + public const string BranchLocked = nameof(BranchLocked); + public const string BranchMerge = nameof(BranchMerge); + public const string BranchPullRequest = nameof(BranchPullRequest); + public const string BranchSearch = nameof(BranchSearch); + public const string BranchShelveset = nameof(BranchShelveset); + public const string Breadcrumb = nameof(Breadcrumb); + public const string Breakfast = nameof(Breakfast); + public const string BreakpointsRemove = nameof(BreakpointsRemove); + public const string Brightness = nameof(Brightness); + public const string Broom = nameof(Broom); + public const string BrowserScreenShot = nameof(BrowserScreenShot); + public const string BrowserTab = nameof(BrowserTab); + public const string BrowserTabScreenshot = nameof(BrowserTabScreenshot); + public const string Brunch = nameof(Brunch); + public const string Brush = nameof(Brush); + public const string BucketColor = nameof(BucketColor); + public const string BucketColorFill = nameof(BucketColorFill); + public const string BufferTimeAfter = nameof(BufferTimeAfter); + public const string BufferTimeBefore = nameof(BufferTimeBefore); + public const string BufferTimeBoth = nameof(BufferTimeBoth); + public const string Bug = nameof(Bug); + public const string BugAction = nameof(BugAction); + public const string BugBlock = nameof(BugBlock); + public const string BugSolid = nameof(BugSolid); + public const string BugSync = nameof(BugSync); + public const string BugWarning = nameof(BugWarning); + public const string Build = nameof(Build); + public const string BuildDefinition = nameof(BuildDefinition); + public const string BuildIssue = nameof(BuildIssue); + public const string BuildQueue = nameof(BuildQueue); + public const string BuildQueueNew = nameof(BuildQueueNew); + public const string BulkPageBlock = nameof(BulkPageBlock); + public const string BulkUpload = nameof(BulkUpload); + public const string BulletedList = nameof(BulletedList); + public const string BulletedList2 = nameof(BulletedList2); + public const string BulletedList2Mirrored = nameof(BulletedList2Mirrored); + public const string BulletedListBullet = nameof(BulletedListBullet); + public const string BulletedListBulletMirrored = nameof(BulletedListBulletMirrored); + public const string BulletedListMirrored = nameof(BulletedListMirrored); + public const string BulletedListText = nameof(BulletedListText); + public const string BulletedListTextMirrored = nameof(BulletedListTextMirrored); + public const string BulletedTreeList = nameof(BulletedTreeList); + public const string Bullseye = nameof(Bullseye); + public const string BullseyeTarget = nameof(BullseyeTarget); + public const string BullseyeTargetAdd = nameof(BullseyeTargetAdd); + public const string BullseyeTargetDelete = nameof(BullseyeTargetDelete); + public const string BullseyeTargetEdit = nameof(BullseyeTargetEdit); + public const string Bus = nameof(Bus); + public const string BusinessCard = nameof(BusinessCard); + public const string BusinessCenterLogo = nameof(BusinessCenterLogo); + public const string BusinessHoursSign = nameof(BusinessHoursSign); + public const string BusinessRule = nameof(BusinessRule); + public const string BusSolid = nameof(BusSolid); + public const string ButtonControl = nameof(ButtonControl); + public const string Cafe = nameof(Cafe); + public const string Cake = nameof(Cake); + public const string CalculatedTable = nameof(CalculatedTable); + public const string Calculator = nameof(Calculator); + public const string CalculatorAddition = nameof(CalculatorAddition); + public const string CalculatorDelta = nameof(CalculatorDelta); + public const string CalculatorEqualTo = nameof(CalculatorEqualTo); + public const string CalculatorGroup = nameof(CalculatorGroup); + public const string CalculatorMultiply = nameof(CalculatorMultiply); + public const string CalculatorNotEqualTo = nameof(CalculatorNotEqualTo); + public const string CalculatorPercentage = nameof(CalculatorPercentage); + public const string CalculatorSubtract = nameof(CalculatorSubtract); + public const string Calendar = nameof(Calendar); + public const string CalendarAgenda = nameof(CalendarAgenda); + public const string CalendarDay = nameof(CalendarDay); + public const string CalendarMirrored = nameof(CalendarMirrored); + public const string CalendarReply = nameof(CalendarReply); + public const string CalendarSettings = nameof(CalendarSettings); + public const string CalendarSettingsMirrored = nameof(CalendarSettingsMirrored); + public const string CalendarWeek = nameof(CalendarWeek); + public const string CalendarWorkWeek = nameof(CalendarWorkWeek); + public const string CalendarYear = nameof(CalendarYear); + public const string Calories = nameof(Calories); + public const string CaloriesAdd = nameof(CaloriesAdd); + public const string Camera = nameof(Camera); + public const string CampaignTemplate = nameof(CampaignTemplate); + public const string Cancel = nameof(Cancel); + public const string CannedChat = nameof(CannedChat); + public const string CanvasAppTemplate32 = nameof(CanvasAppTemplate32); + public const string Car = nameof(Car); + public const string CareActivity = nameof(CareActivity); + public const string CarePlan = nameof(CarePlan); + public const string CarePlanTemplate = nameof(CarePlanTemplate); + public const string CaretBottomLeftCenter8 = nameof(CaretBottomLeftCenter8); + public const string CaretBottomLeftSolid8 = nameof(CaretBottomLeftSolid8); + public const string CaretBottomRightCenter8 = nameof(CaretBottomRightCenter8); + public const string CaretBottomRightSolid8 = nameof(CaretBottomRightSolid8); + public const string CaretDown8 = nameof(CaretDown8); + public const string CaretDownSolid8 = nameof(CaretDownSolid8); + public const string CaretHollow = nameof(CaretHollow); + public const string CaretHollowMirrored = nameof(CaretHollowMirrored); + public const string CaretLeft8 = nameof(CaretLeft8); + public const string CaretLeftSolid8 = nameof(CaretLeftSolid8); + public const string CaretRight = nameof(CaretRight); + public const string CaretRight8 = nameof(CaretRight8); + public const string CaretRightSolid8 = nameof(CaretRightSolid8); + public const string CaretSolid = nameof(CaretSolid); + public const string CaretSolid16 = nameof(CaretSolid16); + public const string CaretSolidAlt = nameof(CaretSolidAlt); + public const string CaretSolidDown = nameof(CaretSolidDown); + public const string CaretSolidLeft = nameof(CaretSolidLeft); + public const string CaretSolidMirrored = nameof(CaretSolidMirrored); + public const string CaretSolidRight = nameof(CaretSolidRight); + public const string CaretSolidUp = nameof(CaretSolidUp); + public const string CaretTopLeftCenter8 = nameof(CaretTopLeftCenter8); + public const string CaretTopLeftSolid8 = nameof(CaretTopLeftSolid8); + public const string CaretTopRightCenter8 = nameof(CaretTopRightCenter8); + public const string CaretTopRightSolid8 = nameof(CaretTopRightSolid8); + public const string CaretUp8 = nameof(CaretUp8); + public const string CaretUpSolid8 = nameof(CaretUpSolid8); + public const string CaseSetting = nameof(CaseSetting); + public const string Cat = nameof(Cat); + public const string CategoryClassification = nameof(CategoryClassification); + public const string CC = nameof(CC); + public const string CCSolid = nameof(CCSolid); + public const string CellPhone = nameof(CellPhone); + public const string CellSplitVertical = nameof(CellSplitVertical); + public const string Certificate = nameof(Certificate); + public const string CertifiedDatabase = nameof(CertifiedDatabase); + public const string ChangeEntitlements = nameof(ChangeEntitlements); + public const string Chart = nameof(Chart); + public const string CharticulatorArrangePolar = nameof(CharticulatorArrangePolar); + public const string CharticulatorArrangePolarAngles = nameof(CharticulatorArrangePolarAngles); + public const string CharticulatorBand = nameof(CharticulatorBand); + public const string CharticulatorGuideCoordinator = nameof(CharticulatorGuideCoordinator); + public const string CharticulatorGuideX = nameof(CharticulatorGuideX); + public const string CharticulatorGuideY = nameof(CharticulatorGuideY); + public const string CharticulatorLegend = nameof(CharticulatorLegend); + public const string CharticulatorLine = nameof(CharticulatorLine); + public const string CharticulatorLineStyleDashed = nameof(CharticulatorLineStyleDashed); + public const string CharticulatorLineStyleDotted = nameof(CharticulatorLineStyleDotted); + public const string CharticulatorLinkingData = nameof(CharticulatorLinkingData); + public const string CharticulatorLinkingSequence = nameof(CharticulatorLinkingSequence); + public const string CharticulatorOrderColumn = nameof(CharticulatorOrderColumn); + public const string CharticulatorOrderRow = nameof(CharticulatorOrderRow); + public const string CharticulatorPlotCartesian = nameof(CharticulatorPlotCartesian); + public const string CharticulatorPlotCurve = nameof(CharticulatorPlotCurve); + public const string CharticulatorPolarCoordinates = nameof(CharticulatorPolarCoordinates); + public const string CharticulatorSpiral = nameof(CharticulatorSpiral); + public const string CharticulatorStackRadial = nameof(CharticulatorStackRadial); + public const string CharticulatorStackY = nameof(CharticulatorStackY); + public const string ChartSeries = nameof(ChartSeries); + public const string ChartTemplate = nameof(ChartTemplate); + public const string ChartXAngle = nameof(ChartXAngle); + public const string ChartYAngle = nameof(ChartYAngle); + public const string Chat = nameof(Chat); + public const string ChatBot = nameof(ChatBot); + public const string ChatInviteFriend = nameof(ChatInviteFriend); + public const string ChatSettings = nameof(ChatSettings); + public const string ChatSolid = nameof(ChatSolid); + public const string Checkbox = nameof(Checkbox); + public const string CheckboxComposite = nameof(CheckboxComposite); + public const string CheckboxCompositeReversed = nameof(CheckboxCompositeReversed); + public const string CheckboxFill = nameof(CheckboxFill); + public const string CheckboxIndeterminate = nameof(CheckboxIndeterminate); + public const string CheckboxIndeterminateCombo = nameof(CheckboxIndeterminateCombo); + public const string CheckedOutByOther12 = nameof(CheckedOutByOther12); + public const string CheckedOutByYou12 = nameof(CheckedOutByYou12); + public const string CheckList = nameof(CheckList); + public const string CheckListCheck = nameof(CheckListCheck); + public const string CheckListCheckMirrored = nameof(CheckListCheckMirrored); + public const string CheckListText = nameof(CheckListText); + public const string CheckListTextMirrored = nameof(CheckListTextMirrored); + public const string CheckMark = nameof(CheckMark); + public const string ChevronDown = nameof(ChevronDown); + public const string ChevronDownEnd = nameof(ChevronDownEnd); + public const string ChevronDownEnd6 = nameof(ChevronDownEnd6); + public const string ChevronDownMed = nameof(ChevronDownMed); + public const string ChevronDownSmall = nameof(ChevronDownSmall); + public const string ChevronFold10 = nameof(ChevronFold10); + public const string ChevronLeft = nameof(ChevronLeft); + public const string ChevronLeftEnd6 = nameof(ChevronLeftEnd6); + public const string ChevronLeftMed = nameof(ChevronLeftMed); + public const string ChevronLeftSmall = nameof(ChevronLeftSmall); + public const string ChevronRight = nameof(ChevronRight); + public const string ChevronRightEnd6 = nameof(ChevronRightEnd6); + public const string ChevronRightMed = nameof(ChevronRightMed); + public const string ChevronRightSmall = nameof(ChevronRightSmall); + public const string ChevronUnfold10 = nameof(ChevronUnfold10); + public const string ChevronUp = nameof(ChevronUp); + public const string ChevronUpEnd = nameof(ChevronUpEnd); + public const string ChevronUpEnd6 = nameof(ChevronUpEnd6); + public const string ChevronUpMed = nameof(ChevronUpMed); + public const string ChevronUpSmall = nameof(ChevronUpSmall); + public const string ChildOf = nameof(ChildOf); + public const string ChoiceColumn = nameof(ChoiceColumn); + public const string Chopsticks = nameof(Chopsticks); + public const string ChromeBack = nameof(ChromeBack); + public const string ChromeBackMirrored = nameof(ChromeBackMirrored); + public const string ChromeClose = nameof(ChromeClose); + public const string ChromeFullScreen = nameof(ChromeFullScreen); + public const string ChromeMinimize = nameof(ChromeMinimize); + public const string ChromeRestore = nameof(ChromeRestore); + public const string CircleAddition = nameof(CircleAddition); + public const string CircleAdditionSolid = nameof(CircleAdditionSolid); + public const string CircleDollar = nameof(CircleDollar); + public const string CircleFill = nameof(CircleFill); + public const string CircleHalfFull = nameof(CircleHalfFull); + public const string CirclePause = nameof(CirclePause); + public const string CirclePauseSolid = nameof(CirclePauseSolid); + public const string CirclePlus = nameof(CirclePlus); + public const string CircleRing = nameof(CircleRing); + public const string CircleShape = nameof(CircleShape); + public const string CircleShapeSolid = nameof(CircleShapeSolid); + public const string CircleStop = nameof(CircleStop); + public const string CircleStopSolid = nameof(CircleStopSolid); + public const string CityNext = nameof(CityNext); + public const string CityNext2 = nameof(CityNext2); + public const string ClassNotebookLogo16 = nameof(ClassNotebookLogo16); + public const string ClassNotebookLogo32 = nameof(ClassNotebookLogo32); + public const string ClassNotebookLogoFill16 = nameof(ClassNotebookLogoFill16); + public const string ClassNotebookLogoFill32 = nameof(ClassNotebookLogoFill32); + public const string ClassNotebookLogoInverse = nameof(ClassNotebookLogoInverse); + public const string ClassNotebookLogoInverse16 = nameof(ClassNotebookLogoInverse16); + public const string ClassNotebookLogoInverse32 = nameof(ClassNotebookLogoInverse32); + public const string ClassroomLogo = nameof(ClassroomLogo); + public const string Clear = nameof(Clear); + public const string ClearFilter = nameof(ClearFilter); + public const string ClearFormatting = nameof(ClearFormatting); + public const string ClearFormattingA = nameof(ClearFormattingA); + public const string ClearFormattingEraser = nameof(ClearFormattingEraser); + public const string ClearNight = nameof(ClearNight); + public const string ClearSelection = nameof(ClearSelection); + public const string ClearSelectionMirrored = nameof(ClearSelectionMirrored); + public const string Clicked = nameof(Clicked); + public const string ClinicalImpression = nameof(ClinicalImpression); + public const string Clipboard = nameof(Clipboard); + public const string ClipboardList = nameof(ClipboardList); + public const string ClipboardListAdd = nameof(ClipboardListAdd); + public const string ClipboardListMirrored = nameof(ClipboardListMirrored); + public const string ClipboardListQuestion = nameof(ClipboardListQuestion); + public const string ClipboardListReply = nameof(ClipboardListReply); + public const string ClipboardSolid = nameof(ClipboardSolid); + public const string Clock = nameof(Clock); + public const string CloneToDesktop = nameof(CloneToDesktop); + public const string ClosedCaption = nameof(ClosedCaption); + public const string ClosePane = nameof(ClosePane); + public const string ClosePaneMirrored = nameof(ClosePaneMirrored); + public const string Cloud = nameof(Cloud); + public const string CloudAdd = nameof(CloudAdd); + public const string CloudDownload = nameof(CloudDownload); + public const string CloudEdit = nameof(CloudEdit); + public const string CloudFlow = nameof(CloudFlow); + public const string CloudImportExport = nameof(CloudImportExport); + public const string CloudLink = nameof(CloudLink); + public const string CloudNotSynced = nameof(CloudNotSynced); + public const string CloudPrinter = nameof(CloudPrinter); + public const string CloudSearch = nameof(CloudSearch); + public const string CloudSecure = nameof(CloudSecure); + public const string CloudUpload = nameof(CloudUpload); + public const string CloudWeather = nameof(CloudWeather); + public const string Cloudy = nameof(Cloudy); + public const string Cocktails = nameof(Cocktails); + public const string Code = nameof(Code); + public const string CodeEdit = nameof(CodeEdit); + public const string Coffee = nameof(Coffee); + public const string CoffeeScript = nameof(CoffeeScript); + public const string CollapseAll = nameof(CollapseAll); + public const string CollapseContent = nameof(CollapseContent); + public const string CollapseContentSingle = nameof(CollapseContentSingle); + public const string CollapseMenu = nameof(CollapseMenu); + public const string CollegeFootball = nameof(CollegeFootball); + public const string CollegeHoops = nameof(CollegeHoops); + public const string Color = nameof(Color); + public const string ColorSolid = nameof(ColorSolid); + public const string Column = nameof(Column); + public const string ColumnFunction = nameof(ColumnFunction); + public const string ColumnLeftTwoThirds = nameof(ColumnLeftTwoThirds); + public const string ColumnLeftTwoThirdsEdit = nameof(ColumnLeftTwoThirdsEdit); + public const string ColumnList = nameof(ColumnList); + public const string ColumnOptions = nameof(ColumnOptions); + public const string ColumnQuestion = nameof(ColumnQuestion); + public const string ColumnQuestionMirrored = nameof(ColumnQuestionMirrored); + public const string ColumnRightTwoThirds = nameof(ColumnRightTwoThirds); + public const string ColumnRightTwoThirdsEdit = nameof(ColumnRightTwoThirdsEdit); + public const string ColumnSigma = nameof(ColumnSigma); + public const string ColumnVerticalSection = nameof(ColumnVerticalSection); + public const string ColumnVerticalSectionEdit = nameof(ColumnVerticalSectionEdit); + public const string Combine = nameof(Combine); + public const string Combobox = nameof(Combobox); + public const string CommandPrompt = nameof(CommandPrompt); + public const string Comment = nameof(Comment); + public const string CommentActive = nameof(CommentActive); + public const string CommentAdd = nameof(CommentAdd); + public const string CommentNext = nameof(CommentNext); + public const string CommentPrevious = nameof(CommentPrevious); + public const string CommentSolid = nameof(CommentSolid); + public const string CommentUrgent = nameof(CommentUrgent); + public const string Commitments = nameof(Commitments); + public const string CommonDataServiceCDS = nameof(CommonDataServiceCDS); + public const string CommunicationDetails = nameof(CommunicationDetails); + public const string CommunicationDetailsMirrored = nameof(CommunicationDetailsMirrored); + public const string Communications = nameof(Communications); + public const string CompactColumnList = nameof(CompactColumnList); + public const string CompactViewList = nameof(CompactViewList); + public const string CompanyDirectory = nameof(CompanyDirectory); + public const string CompanyDirectoryMirrored = nameof(CompanyDirectoryMirrored); + public const string Compare = nameof(Compare); + public const string CompareUneven = nameof(CompareUneven); + public const string CompassNW = nameof(CompassNW); + public const string Completed = nameof(Completed); + public const string Completed12 = nameof(Completed12); + public const string CompletedSolid = nameof(CompletedSolid); + public const string ComplianceAudit = nameof(ComplianceAudit); + public const string ConfigurationSolid = nameof(ConfigurationSolid); + public const string ConfirmEvent = nameof(ConfirmEvent); + public const string ConnectContacts = nameof(ConnectContacts); + public const string ConnectVirtualMachine = nameof(ConnectVirtualMachine); + public const string ConstructionCone = nameof(ConstructionCone); + public const string ConstructionConeSolid = nameof(ConstructionConeSolid); + public const string Contact = nameof(Contact); + public const string ContactCard = nameof(ContactCard); + public const string ContactCardSettings = nameof(ContactCardSettings); + public const string ContactCardSettingsMirrored = nameof(ContactCardSettingsMirrored); + public const string ContactHeart = nameof(ContactHeart); + public const string ContactInfo = nameof(ContactInfo); + public const string ContactInfoMirrored = nameof(ContactInfoMirrored); + public const string ContactLink = nameof(ContactLink); + public const string ContactList = nameof(ContactList); + public const string ContactLock = nameof(ContactLock); + public const string ContentFeed = nameof(ContentFeed); + public const string ContentSettings = nameof(ContentSettings); + public const string ContentUnderstandingApp = nameof(ContentUnderstandingApp); + public const string ContextMenu = nameof(ContextMenu); + public const string Contrast = nameof(Contrast); + public const string Copy = nameof(Copy); + public const string CopyEdit = nameof(CopyEdit); + public const string CopyPath = nameof(CopyPath); + public const string CortanaLogoBeckonInner = nameof(CortanaLogoBeckonInner); + public const string CortanaLogoBeckonOuter = nameof(CortanaLogoBeckonOuter); + public const string CortanaLogoInner = nameof(CortanaLogoInner); + public const string CortanaLogoOuter = nameof(CortanaLogoOuter); + public const string CortanaLogoReadyInner = nameof(CortanaLogoReadyInner); + public const string CortanaLogoReadyOuter = nameof(CortanaLogoReadyOuter); + public const string CostControlLedgerAdmin = nameof(CostControlLedgerAdmin); + public const string CostControl = nameof(CostControl); + public const string Cotton = nameof(Cotton); + public const string Count = nameof(Count); + public const string Coupon = nameof(Coupon); + public const string CPlusPlus = nameof(CPlusPlus); + public const string CPlusPlusLanguage = nameof(CPlusPlusLanguage); + public const string CreateMailRule = nameof(CreateMailRule); + public const string CreditCardBill = nameof(CreditCardBill); + public const string Cricket = nameof(Cricket); + public const string CriticalErrorSolid = nameof(CriticalErrorSolid); + public const string CRMLead = nameof(CRMLead); + public const string CRMProcesses = nameof(CRMProcesses); + public const string CRMReport = nameof(CRMReport); + public const string CRMResourceOptimizationApp32 = nameof(CRMResourceOptimizationApp32); + public const string CRMServices = nameof(CRMServices); + public const string Crop = nameof(Crop); + public const string Crown = nameof(Crown); + public const string CrownSolid = nameof(CrownSolid); + public const string CSharp = nameof(CSharp); + public const string CSharpLanguage = nameof(CSharpLanguage); + public const string CSS = nameof(CSS); + public const string CtrlButton = nameof(CtrlButton); + public const string CubeShape = nameof(CubeShape); + public const string CubeShapeSolid = nameof(CubeShapeSolid); + public const string Currency = nameof(Currency); + public const string CustomActivity = nameof(CustomActivity); + public const string CustomEntity = nameof(CustomEntity); + public const string CustomerAssets = nameof(CustomerAssets); + public const string CustomizeToolbar = nameof(CustomizeToolbar); + public const string CustomList = nameof(CustomList); + public const string CustomListMirrored = nameof(CustomListMirrored); + public const string Cut = nameof(Cut); + public const string Cycling = nameof(Cycling); + public const string D365BusinessCentral = nameof(D365BusinessCentral); + public const string D365CoreHR = nameof(D365CoreHR); + public const string D365CustomerInsights = nameof(D365CustomerInsights); + public const string D365CustomerVoiceApp = nameof(D365CustomerVoiceApp); + public const string D365ProjectOperations = nameof(D365ProjectOperations); + public const string D365TalentInsight = nameof(D365TalentInsight); + public const string D365TalentLearn = nameof(D365TalentLearn); + public const string DashboardAdd = nameof(DashboardAdd); + public const string DataAnalysis = nameof(DataAnalysis); + public const string Database = nameof(Database); + public const string DatabaseActivity = nameof(DatabaseActivity); + public const string DatabaseBlock = nameof(DatabaseBlock); + public const string DatabaseRefresh = nameof(DatabaseRefresh); + public const string DatabaseSource = nameof(DatabaseSource); + public const string DatabaseSwap = nameof(DatabaseSwap); + public const string DatabaseSync = nameof(DatabaseSync); + public const string DatabaseView = nameof(DatabaseView); + public const string DataConnectionLibrary = nameof(DataConnectionLibrary); + public const string DataEnrichment = nameof(DataEnrichment); + public const string DataFilter = nameof(DataFilter); + public const string DataFlow = nameof(DataFlow); + public const string Dataflows = nameof(Dataflows); + public const string DataflowsLink = nameof(DataflowsLink); + public const string DataManagementSettings = nameof(DataManagementSettings); + public const string DatamartExternal = nameof(DatamartExternal); + public const string Dataverse = nameof(Dataverse); + public const string DateTime = nameof(DateTime); + public const string DateTime12 = nameof(DateTime12); + public const string DateTime2 = nameof(DateTime2); + public const string DateTimeMirrored = nameof(DateTimeMirrored); + public const string DeactivateOrders = nameof(DeactivateOrders); + public const string Debug = nameof(Debug); + public const string DebugAll = nameof(DebugAll); + public const string Decimals = nameof(Decimals); + public const string DecisionSolid = nameof(DecisionSolid); + public const string DeclineCall = nameof(DeclineCall); + public const string DecreaseIndent = nameof(DecreaseIndent); + public const string DecreaseIndentArrow = nameof(DecreaseIndentArrow); + public const string DecreaseIndentArrowMirrored = nameof(DecreaseIndentArrowMirrored); + public const string DecreaseIndentMirrored = nameof(DecreaseIndentMirrored); + public const string DecreaseIndentText = nameof(DecreaseIndentText); + public const string DecreaseIndentTextMirrored = nameof(DecreaseIndentTextMirrored); + public const string DefaultRatio = nameof(DefaultRatio); + public const string DefaultSettings = nameof(DefaultSettings); + public const string DefectSolid = nameof(DefectSolid); + public const string DefenderApp = nameof(DefenderApp); + public const string DefenderBadge12 = nameof(DefenderBadge12); + public const string DefenderTVM = nameof(DefenderTVM); + public const string Delete = nameof(Delete); + public const string DeleteColumns = nameof(DeleteColumns); + public const string DeleteRows = nameof(DeleteRows); + public const string DeleteRowsMirrored = nameof(DeleteRowsMirrored); + public const string DeleteTable = nameof(DeleteTable); + public const string DeliveryTruck = nameof(DeliveryTruck); + public const string DelveAnalytics = nameof(DelveAnalytics); + public const string DelveAnalyticsLogo = nameof(DelveAnalyticsLogo); + public const string DelveLogo = nameof(DelveLogo); + public const string DelveLogoFill = nameof(DelveLogoFill); + public const string DelveLogoInverse = nameof(DelveLogoInverse); + public const string DensityComfy = nameof(DensityComfy); + public const string DensityDefault = nameof(DensityDefault); + public const string DependencyAdd = nameof(DependencyAdd); + public const string DependencyRemove = nameof(DependencyRemove); + public const string Deploy = nameof(Deploy); + public const string Descending = nameof(Descending); + public const string Design = nameof(Design); + public const string DesktopFlow = nameof(DesktopFlow); + public const string DesktopScreenshot = nameof(DesktopScreenshot); + public const string DeveloperTools = nameof(DeveloperTools); + public const string DeviceBug = nameof(DeviceBug); + public const string DeviceOff = nameof(DeviceOff); + public const string DeviceRun = nameof(DeviceRun); + public const string Devices2 = nameof(Devices2); + public const string Devices3 = nameof(Devices3); + public const string Devices4 = nameof(Devices4); + public const string Diagnostic = nameof(Diagnostic); + public const string DiagnosticDataBar = nameof(DiagnosticDataBar); + public const string DiagnosticDataBarTooltip = nameof(DiagnosticDataBarTooltip); + public const string DiagnosticDataViewerApp = nameof(DiagnosticDataViewerApp); + public const string Dialpad = nameof(Dialpad); + public const string DialShape1 = nameof(DialShape1); + public const string DialShape3 = nameof(DialShape3); + public const string Diamond = nameof(Diamond); + public const string DiamondSolid = nameof(DiamondSolid); + public const string DiamondUser = nameof(DiamondUser); + public const string Dictionary = nameof(Dictionary); + public const string DictionaryRemove = nameof(DictionaryRemove); + public const string DietPlanNotebook = nameof(DietPlanNotebook); + public const string DiffInline = nameof(DiffInline); + public const string DiffSideBySide = nameof(DiffSideBySide); + public const string Diploma = nameof(Diploma); + public const string DisableUpdates = nameof(DisableUpdates); + public const string DisconnectVirtualMachine = nameof(DisconnectVirtualMachine); + public const string Dislike = nameof(Dislike); + public const string DislikeSolid = nameof(DislikeSolid); + public const string Distance = nameof(Distance); + public const string DistributeDown = nameof(DistributeDown); + public const string DockLeft = nameof(DockLeft); + public const string DockLeftMirrored = nameof(DockLeftMirrored); + public const string DockRight = nameof(DockRight); + public const string DocLibrary = nameof(DocLibrary); + public const string DocsLogoInverse = nameof(DocsLogoInverse); + public const string Document = nameof(Document); + public const string DocumentApproval = nameof(DocumentApproval); + public const string Documentation = nameof(Documentation); + public const string DocumentManagement = nameof(DocumentManagement); + public const string DocumentReply = nameof(DocumentReply); + public const string DocumentSearch = nameof(DocumentSearch); + public const string DocumentSet = nameof(DocumentSet); + public const string DOM = nameof(DOM); + public const string DonutChart = nameof(DonutChart); + public const string Door = nameof(Door); + public const string DoubleBookmark = nameof(DoubleBookmark); + public const string DoubleChevronDown = nameof(DoubleChevronDown); + public const string DoubleChevronDown12 = nameof(DoubleChevronDown12); + public const string DoubleChevronDown8 = nameof(DoubleChevronDown8); + public const string DoubleChevronLeft = nameof(DoubleChevronLeft); + public const string DoubleChevronLeft12 = nameof(DoubleChevronLeft12); + public const string DoubleChevronLeft8 = nameof(DoubleChevronLeft8); + public const string DoubleChevronLeftMed = nameof(DoubleChevronLeftMed); + public const string DoubleChevronLeftMedMirrored = nameof(DoubleChevronLeftMedMirrored); + public const string DoubleChevronRight = nameof(DoubleChevronRight); + public const string DoubleChevronRight12 = nameof(DoubleChevronRight12); + public const string DoubleChevronRight8 = nameof(DoubleChevronRight8); + public const string DoubleChevronUp = nameof(DoubleChevronUp); + public const string DoubleChevronUp12 = nameof(DoubleChevronUp12); + public const string DoubleChevronUp8 = nameof(DoubleChevronUp8); + public const string DoubleColumn = nameof(DoubleColumn); + public const string DoubleColumnEdit = nameof(DoubleColumnEdit); + public const string DoubleDownArrow = nameof(DoubleDownArrow); + public const string Down = nameof(Down); + public const string DownKey = nameof(DownKey); + public const string Download = nameof(Download); + public const string DownloadDocument = nameof(DownloadDocument); + public const string DragObject = nameof(DragObject); + public const string DrillDown = nameof(DrillDown); + public const string DrillDownSolid = nameof(DrillDownSolid); + public const string DrillExpand = nameof(DrillExpand); + public const string DrillShow = nameof(DrillShow); + public const string DrillThrough = nameof(DrillThrough); + public const string DriverOff = nameof(DriverOff); + public const string DRM = nameof(DRM); + public const string Drop = nameof(Drop); + public const string Dropdown = nameof(Dropdown); + public const string DropShape = nameof(DropShape); + public const string DropShapeSolid = nameof(DropShapeSolid); + public const string DuplicateRow = nameof(DuplicateRow); + public const string DustStorm = nameof(DustStorm); + public const string DynamicList = nameof(DynamicList); + public const string Dynamics365Logo = nameof(Dynamics365Logo); + public const string DynamicSMBLogo = nameof(DynamicSMBLogo); + public const string EaseOfAccess = nameof(EaseOfAccess); + public const string EatDrink = nameof(EatDrink); + public const string EdgeLogo = nameof(EdgeLogo); + public const string EdgeLogo16 = nameof(EdgeLogo16); + public const string EdgeOldLogo = nameof(EdgeOldLogo); + public const string eDiscovery = nameof(eDiscovery); + public const string Edit = nameof(Edit); + public const string EditContact = nameof(EditContact); + public const string EditCreate = nameof(EditCreate); + public const string EditEvent = nameof(EditEvent); + public const string EditListPencil = nameof(EditListPencil); + public const string EditMail = nameof(EditMail); + public const string EditMirrored = nameof(EditMirrored); + public const string EditNote = nameof(EditNote); + public const string EditPhoto = nameof(EditPhoto); + public const string EditSolid12 = nameof(EditSolid12); + public const string EditSolidMirrored12 = nameof(EditSolidMirrored12); + public const string EditStyle = nameof(EditStyle); + public const string EditTable = nameof(EditTable); + public const string Education = nameof(Education); + public const string Ellipse = nameof(Ellipse); + public const string Embed = nameof(Embed); + public const string EMI = nameof(EMI); + public const string Emoji = nameof(Emoji); + public const string Emoji2 = nameof(Emoji2); + public const string EmojiDisappointed = nameof(EmojiDisappointed); + public const string EmojiNeutral = nameof(EmojiNeutral); + public const string EmojiTabSymbols = nameof(EmojiTabSymbols); + public const string EmployeeSelfService = nameof(EmployeeSelfService); + public const string EmptyRecycleBin = nameof(EmptyRecycleBin); + public const string Encounter = nameof(Encounter); + public const string Encryption = nameof(Encryption); + public const string EndPointSolid = nameof(EndPointSolid); + public const string EngineeringGroup = nameof(EngineeringGroup); + public const string EntitlementPolicy = nameof(EntitlementPolicy); + public const string EntitlementRedemption = nameof(EntitlementRedemption); + public const string EntityExtraction = nameof(EntityExtraction); + public const string EntryDecline = nameof(EntryDecline); + public const string EntryView = nameof(EntryView); + public const string Equalizer = nameof(Equalizer); + public const string EraseTool = nameof(EraseTool); + public const string Error = nameof(Error); + public const string ErrorBadge = nameof(ErrorBadge); + public const string ErrorBadge12 = nameof(ErrorBadge12); + public const string Event = nameof(Event); + public const string Event12 = nameof(Event12); + public const string EventAccepted = nameof(EventAccepted); + public const string EventDate = nameof(EventDate); + public const string EventDateMissed12 = nameof(EventDateMissed12); + public const string EventDeclined = nameof(EventDeclined); + public const string EventInfo = nameof(EventInfo); + public const string EventTentative = nameof(EventTentative); + public const string EventTentativeMirrored = nameof(EventTentativeMirrored); + public const string EventToDoLogo = nameof(EventToDoLogo); + public const string ExcelDocument = nameof(ExcelDocument); + public const string ExcelLogo = nameof(ExcelLogo); + public const string ExcelLogo16 = nameof(ExcelLogo16); + public const string ExcelLogoInverse = nameof(ExcelLogoInverse); + public const string ExcelLogoInverse16 = nameof(ExcelLogoInverse16); + public const string ExchangeLogo = nameof(ExchangeLogo); + public const string ExchangeLogoInverse = nameof(ExchangeLogoInverse); + public const string ExerciseTracker = nameof(ExerciseTracker); + public const string ExpandAll = nameof(ExpandAll); + public const string ExpandMenu = nameof(ExpandMenu); + public const string ExploreContent = nameof(ExploreContent); + public const string ExploreContentSingle = nameof(ExploreContentSingle); + public const string ExploreData = nameof(ExploreData); + public const string Export = nameof(Export); + public const string ExportMirrored = nameof(ExportMirrored); + public const string ExpressRouteCircuits = nameof(ExpressRouteCircuits); + public const string ExternalBuild = nameof(ExternalBuild); + public const string ExternalTFVC = nameof(ExternalTFVC); + public const string ExternalUser = nameof(ExternalUser); + public const string ExternalXAML = nameof(ExternalXAML); + public const string Eyedropper = nameof(Eyedropper); + public const string EyeShadow = nameof(EyeShadow); + public const string F12DevTools = nameof(F12DevTools); + public const string FabricAssetLibrary = nameof(FabricAssetLibrary); + public const string FabricChannelFolder = nameof(FabricChannelFolder); + public const string FabricDataConnectionLibrary = nameof(FabricDataConnectionLibrary); + public const string FabricDocLibrary = nameof(FabricDocLibrary); + public const string FabricFolder = nameof(FabricFolder); + public const string FabricFolderConfirm = nameof(FabricFolderConfirm); + public const string FabricFolderFill = nameof(FabricFolderFill); + public const string FabricFolderLink = nameof(FabricFolderLink); + public const string FabricFolderSearch = nameof(FabricFolderSearch); + public const string FabricFolderUpload = nameof(FabricFolderUpload); + public const string FabricFormLibrary = nameof(FabricFormLibrary); + public const string FabricFormLibraryMirrored = nameof(FabricFormLibraryMirrored); + public const string FabricMoveToFolder = nameof(FabricMoveToFolder); + public const string FabricNetworkFolder = nameof(FabricNetworkFolder); + public const string FabricNewFolder = nameof(FabricNewFolder); + public const string FabricOpenFolderHorizontal = nameof(FabricOpenFolderHorizontal); + public const string FabricPictureLibrary = nameof(FabricPictureLibrary); + public const string FabricPublicFolder = nameof(FabricPublicFolder); + public const string FabricReportLibrary = nameof(FabricReportLibrary); + public const string FabricReportLibraryMirrored = nameof(FabricReportLibraryMirrored); + public const string FabricSyncFolder = nameof(FabricSyncFolder); + public const string FabricTextHighlight = nameof(FabricTextHighlight); + public const string FabricTextHighlightComposite = nameof(FabricTextHighlightComposite); + public const string FabricUnsyncFolder = nameof(FabricUnsyncFolder); + public const string FabricUserFolder = nameof(FabricUserFolder); + public const string Factory = nameof(Factory); + public const string Family = nameof(Family); + public const string FangBody = nameof(FangBody); + public const string FastForward = nameof(FastForward); + public const string FastForwardEightX = nameof(FastForwardEightX); + public const string FastForwardFourX = nameof(FastForwardFourX); + public const string FastForwardOneFiveX = nameof(FastForwardOneFiveX); + public const string FastForwardOneX = nameof(FastForwardOneX); + public const string FastForwardPointFiveX = nameof(FastForwardPointFiveX); + public const string FastForwardTwoX = nameof(FastForwardTwoX); + public const string FastMode = nameof(FastMode); + public const string Favicon = nameof(Favicon); + public const string FavoriteBlock = nameof(FavoriteBlock); + public const string FavoriteList = nameof(FavoriteList); + public const string FavoriteStar = nameof(FavoriteStar); + public const string FavoriteStarFill = nameof(FavoriteStarFill); + public const string Fax = nameof(Fax); + public const string Feedback = nameof(Feedback); + public const string FeedbackRequestMirroredSolid = nameof(FeedbackRequestMirroredSolid); + public const string FeedbackRequestSolid = nameof(FeedbackRequestSolid); + public const string FeedbackResponseSolid = nameof(FeedbackResponseSolid); + public const string Ferry = nameof(Ferry); + public const string FerrySolid = nameof(FerrySolid); + public const string FieldChanged = nameof(FieldChanged); + public const string FieldEmpty = nameof(FieldEmpty); + public const string FieldFilled = nameof(FieldFilled); + public const string FieldNotChanged = nameof(FieldNotChanged); + public const string FieldReadOnly = nameof(FieldReadOnly); + public const string FieldRequired = nameof(FieldRequired); + public const string FileASPX = nameof(FileASPX); + public const string FileBug = nameof(FileBug); + public const string FileCode = nameof(FileCode); + public const string FileComment = nameof(FileComment); + public const string FileCSS = nameof(FileCSS); + public const string FileHTML = nameof(FileHTML); + public const string FileImage = nameof(FileImage); + public const string FileJAVA = nameof(FileJAVA); + public const string FileLess = nameof(FileLess); + public const string FileOff = nameof(FileOff); + public const string FilePDB = nameof(FilePDB); + public const string FileRequest = nameof(FileRequest); + public const string FileSass = nameof(FileSass); + public const string FileSQL = nameof(FileSQL); + public const string FileSymlink = nameof(FileSymlink); + public const string FileSystem = nameof(FileSystem); + public const string FileTemplate = nameof(FileTemplate); + public const string FileTypeSolution = nameof(FileTypeSolution); + public const string FileYML = nameof(FileYML); + public const string Filter = nameof(Filter); + public const string FilterAscending = nameof(FilterAscending); + public const string FilterDescending = nameof(FilterDescending); + public const string Filters = nameof(Filters); + public const string FilterSettings = nameof(FilterSettings); + public const string FilterSolid = nameof(FilterSolid); + public const string FiltersSolid = nameof(FiltersSolid); + public const string Financial = nameof(Financial); + public const string FinancialMirroredSolid = nameof(FinancialMirroredSolid); + public const string FinancialSolid = nameof(FinancialSolid); + public const string Fingerprint = nameof(Fingerprint); + public const string FitPage = nameof(FitPage); + public const string FitWidth = nameof(FitWidth); + public const string FiveTileGrid = nameof(FiveTileGrid); + public const string FixedAssetManagement = nameof(FixedAssetManagement); + public const string FixedColumnWidth = nameof(FixedColumnWidth); + public const string Flag = nameof(Flag); + public const string FlameSolid = nameof(FlameSolid); + public const string FlashAuto = nameof(FlashAuto); + public const string Flashlight = nameof(Flashlight); + public const string FlashOff = nameof(FlashOff); + public const string FlickDown = nameof(FlickDown); + public const string FlickLeft = nameof(FlickLeft); + public const string FlickRight = nameof(FlickRight); + public const string FlickUp = nameof(FlickUp); + public const string Flow = nameof(Flow); + public const string FlowChart = nameof(FlowChart); + public const string Flower = nameof(Flower); + public const string FlowTemplate = nameof(FlowTemplate); + public const string FlowTrigger = nameof(FlowTrigger); + public const string FluidLogo = nameof(FluidLogo); + public const string FocalPoint = nameof(FocalPoint); + public const string Focus = nameof(Focus); + public const string FocusView = nameof(FocusView); + public const string Fog = nameof(Fog); + public const string Folder = nameof(Folder); + public const string FolderFill = nameof(FolderFill); + public const string FolderHorizontal = nameof(FolderHorizontal); + public const string FolderList = nameof(FolderList); + public const string FolderListMirrored = nameof(FolderListMirrored); + public const string FolderOpen = nameof(FolderOpen); + public const string FolderQuery = nameof(FolderQuery); + public const string FolderSearch = nameof(FolderSearch); + public const string FollowUser = nameof(FollowUser); + public const string Font = nameof(Font); + public const string FontColor = nameof(FontColor); + public const string FontColorA = nameof(FontColorA); + public const string FontColorKorean = nameof(FontColorKorean); + public const string FontColorSwatch = nameof(FontColorSwatch); + public const string FontDecrease = nameof(FontDecrease); + public const string FontIncrease = nameof(FontIncrease); + public const string FontSize = nameof(FontSize); + public const string FontSize2 = nameof(FontSize2); + public const string FontStyleKorean = nameof(FontStyleKorean); + public const string Footer = nameof(Footer); + public const string FormatPainter = nameof(FormatPainter); + public const string FormLibrary = nameof(FormLibrary); + public const string FormLibraryMirrored = nameof(FormLibraryMirrored); + public const string FormProcessing = nameof(FormProcessing); + public const string Forum = nameof(Forum); + public const string Forward = nameof(Forward); + public const string ForwardEvent = nameof(ForwardEvent); + public const string Freezing = nameof(Freezing); + public const string FreezingRain = nameof(FreezingRain); + public const string Frigid = nameof(Frigid); + public const string FrontCamera = nameof(FrontCamera); + public const string FSharp = nameof(FSharp); + public const string FSharpLanguage = nameof(FSharpLanguage); + public const string FullCircleMask = nameof(FullCircleMask); + public const string FullHistory = nameof(FullHistory); + public const string FullScreen = nameof(FullScreen); + public const string FullView = nameof(FullView); + public const string FullWidth = nameof(FullWidth); + public const string FullWidthEdit = nameof(FullWidthEdit); + public const string FunctionalManagerDashboard = nameof(FunctionalManagerDashboard); + public const string FunnelChart = nameof(FunnelChart); + public const string GallatinLogo = nameof(GallatinLogo); + public const string Game = nameof(Game); + public const string Gather = nameof(Gather); + public const string Generate = nameof(Generate); + public const string GenericScan = nameof(GenericScan); + public const string GenericScanFilled = nameof(GenericScanFilled); + public const string GIF = nameof(GIF); + public const string Giftbox = nameof(Giftbox); + public const string GiftboxOpen = nameof(GiftboxOpen); + public const string GiftBoxSolid = nameof(GiftBoxSolid); + public const string GiftCard = nameof(GiftCard); + public const string GitGraph = nameof(GitGraph); + public const string Glasses = nameof(Glasses); + public const string Glimmer = nameof(Glimmer); + public const string GlobalNavButton = nameof(GlobalNavButton); + public const string GlobalNavButtonActive = nameof(GlobalNavButtonActive); + public const string Globe = nameof(Globe); + public const string Globe2 = nameof(Globe2); + public const string GlobeFavorite = nameof(GlobeFavorite); + public const string Go = nameof(Go); + public const string Golf = nameof(Golf); + public const string GoMirrored = nameof(GoMirrored); + public const string GoToDashboard = nameof(GoToDashboard); + public const string GotoToday = nameof(GotoToday); + public const string GraphSymbol = nameof(GraphSymbol); + public const string GreetingCard = nameof(GreetingCard); + public const string GridViewLarge = nameof(GridViewLarge); + public const string GridViewMedium = nameof(GridViewMedium); + public const string GridViewSmall = nameof(GridViewSmall); + public const string GripperBarHorizontal = nameof(GripperBarHorizontal); + public const string GripperBarVertical = nameof(GripperBarVertical); + public const string GripperDotsVertical = nameof(GripperDotsVertical); + public const string GripperTool = nameof(GripperTool); + public const string Group = nameof(Group); + public const string GroupedAscending = nameof(GroupedAscending); + public const string GroupedDescending = nameof(GroupedDescending); + public const string GroupedList = nameof(GroupedList); + public const string GroupList = nameof(GroupList); + public const string GroupObject = nameof(GroupObject); + public const string GroupRemove = nameof(GroupRemove); + public const string GUID = nameof(GUID); + public const string Guitar = nameof(Guitar); + public const string HailDay = nameof(HailDay); + public const string HailNight = nameof(HailNight); + public const string HalfAlpha = nameof(HalfAlpha); + public const string HalfCircle = nameof(HalfCircle); + public const string HandsFree = nameof(HandsFree); + public const string Handwriting = nameof(Handwriting); + public const string HardDrive = nameof(HardDrive); + public const string HardDriveGroup = nameof(HardDriveGroup); + public const string HardDriveLock = nameof(HardDriveLock); + public const string HardDriveUnlock = nameof(HardDriveUnlock); + public const string HazyDay = nameof(HazyDay); + public const string HazyNight = nameof(HazyNight); + public const string Header = nameof(Header); + public const string Header1 = nameof(Header1); + public const string Header2 = nameof(Header2); + public const string Header3 = nameof(Header3); + public const string Header4 = nameof(Header4); + public const string Headset = nameof(Headset); + public const string HeadsetSolid = nameof(HeadsetSolid); + public const string Health = nameof(Health); + public const string HealthRefresh = nameof(HealthRefresh); + public const string HealthSolid = nameof(HealthSolid); + public const string Heart = nameof(Heart); + public const string HeartBroken = nameof(HeartBroken); + public const string HeartFill = nameof(HeartFill); + public const string Help = nameof(Help); + public const string HelpMirrored = nameof(HelpMirrored); + public const string HexaditeInvestigation = nameof(HexaditeInvestigation); + public const string HexaditeInvestigationCancel = nameof(HexaditeInvestigationCancel); + public const string HexaditeInvestigationSemiAuto = nameof(HexaditeInvestigationSemiAuto); + public const string Hexagon = nameof(Hexagon); + public const string Hide = nameof(Hide); + public const string Hide2 = nameof(Hide2); + public const string Hide3 = nameof(Hide3); + public const string HideVisualFilter = nameof(HideVisualFilter); + public const string Highlight = nameof(Highlight); + public const string HighlightMappedShapes = nameof(HighlightMappedShapes); + public const string HintText = nameof(HintText); + public const string HistoricalWeather = nameof(HistoricalWeather); + public const string History = nameof(History); + public const string Home = nameof(Home); + public const string HomeDropdown = nameof(HomeDropdown); + public const string HomeGroup = nameof(HomeGroup); + public const string HomeSolid = nameof(HomeSolid); + public const string HomeVerify = nameof(HomeVerify); + public const string HorizontalDistributeCenter = nameof(HorizontalDistributeCenter); + public const string HorizontalTabKey = nameof(HorizontalTabKey); + public const string Hospital = nameof(Hospital); + public const string Hot = nameof(Hot); + public const string Hotel = nameof(Hotel); + public const string HourGlass = nameof(HourGlass); + public const string Ice = nameof(Ice); + public const string IconSetsFlag = nameof(IconSetsFlag); + public const string IDBadge = nameof(IDBadge); + public const string IgnoreConversation = nameof(IgnoreConversation); + public const string ImageCrosshair = nameof(ImageCrosshair); + public const string ImageDiff = nameof(ImageDiff); + public const string ImageInAR = nameof(ImageInAR); + public const string ImagePixel = nameof(ImagePixel); + public const string ImageSearch = nameof(ImageSearch); + public const string Import = nameof(Import); + public const string ImportAllMirrored = nameof(ImportAllMirrored); + public const string Important = nameof(Important); + public const string ImportMirrored = nameof(ImportMirrored); + public const string Inbox = nameof(Inbox); + public const string InboxActive = nameof(InboxActive); + public const string InboxCheck = nameof(InboxCheck); + public const string IncidentTriangle = nameof(IncidentTriangle); + public const string IncomingCall = nameof(IncomingCall); + public const string IncreaseIndent = nameof(IncreaseIndent); + public const string IncreaseIndentArrow = nameof(IncreaseIndentArrow); + public const string IncreaseIndentArrowMirrored = nameof(IncreaseIndentArrowMirrored); + public const string IncreaseIndentHanging = nameof(IncreaseIndentHanging); + public const string IncreaseIndentHangingMirrored = nameof(IncreaseIndentHangingMirrored); + public const string IncreaseIndentMirrored = nameof(IncreaseIndentMirrored); + public const string IncreaseIndentText = nameof(IncreaseIndentText); + public const string IncreaseIndentTextMirrored = nameof(IncreaseIndentTextMirrored); + public const string IndentFirstLine = nameof(IndentFirstLine); + public const string Info = nameof(Info); + public const string Info12 = nameof(Info12); + public const string Info2 = nameof(Info2); + public const string InformationBarriers = nameof(InformationBarriers); + public const string InfoSolid = nameof(InfoSolid); + public const string InkingTool = nameof(InkingTool); + public const string InputAddress = nameof(InputAddress); + public const string Insert = nameof(Insert); + public const string InsertColumnsLeft = nameof(InsertColumnsLeft); + public const string InsertColumnsRight = nameof(InsertColumnsRight); + public const string InsertRowsAbove = nameof(InsertRowsAbove); + public const string InsertRowsBelow = nameof(InsertRowsBelow); + public const string InsertSignatureLine = nameof(InsertSignatureLine); + public const string InsertTextBox = nameof(InsertTextBox); + public const string InsertTextBoxKorean = nameof(InsertTextBoxKorean); + public const string Insights = nameof(Insights); + public const string Installation = nameof(Installation); + public const string InstallToDrive = nameof(InstallToDrive); + public const string IntermittentCloudsDay = nameof(IntermittentCloudsDay); + public const string IntermittentCloudsNight = nameof(IntermittentCloudsNight); + public const string InternalInvestigation = nameof(InternalInvestigation); + public const string InternetSharing = nameof(InternetSharing); + public const string IntersectShape = nameof(IntersectShape); + public const string Invoice = nameof(Invoice); + public const string IOT = nameof(IOT); + public const string IoTSecure = nameof(IoTSecure); + public const string IRMForward = nameof(IRMForward); + public const string IRMForwardMirrored = nameof(IRMForwardMirrored); + public const string IRMReply = nameof(IRMReply); + public const string IRMReplyMirrored = nameof(IRMReplyMirrored); + public const string IssueSolid = nameof(IssueSolid); + public const string IssueTracking = nameof(IssueTracking); + public const string IssueTrackingMirrored = nameof(IssueTrackingMirrored); + public const string Italic = nameof(Italic); + public const string ItalicC = nameof(ItalicC); + public const string ItalicD = nameof(ItalicD); + public const string ItalicK = nameof(ItalicK); + public const string ItalicKazakh = nameof(ItalicKazakh); + public const string ItalicKorean = nameof(ItalicKorean); + public const string ItalicL = nameof(ItalicL); + public const string ItalicS = nameof(ItalicS); + public const string ItalicT = nameof(ItalicT); + public const string JavaScriptLanguage = nameof(JavaScriptLanguage); + public const string JoinOnlineMeeting = nameof(JoinOnlineMeeting); + public const string JS = nameof(JS); + public const string KaizalaLogo = nameof(KaizalaLogo); + public const string KeyboardClassic = nameof(KeyboardClassic); + public const string KeyPhraseExtraction = nameof(KeyPhraseExtraction); + public const string KnowledgeArticle = nameof(KnowledgeArticle); + public const string KnowledgeManagementApp = nameof(KnowledgeManagementApp); + public const string Label = nameof(Label); + public const string LadybugSolid = nameof(LadybugSolid); + public const string Lamp = nameof(Lamp); + public const string LandscapeOrientation = nameof(LandscapeOrientation); + public const string LaptopSecure = nameof(LaptopSecure); + public const string LaptopSelected = nameof(LaptopSelected); + public const string LargeGrid = nameof(LargeGrid); + public const string LearningApp = nameof(LearningApp); + public const string LearningTools = nameof(LearningTools); + public const string Leave = nameof(Leave); + public const string LeaveUser = nameof(LeaveUser); + public const string LeftKey = nameof(LeftKey); + public const string Library = nameof(Library); + public const string LibraryAddTo = nameof(LibraryAddTo); + public const string Lifesaver = nameof(Lifesaver); + public const string LifesaverLock = nameof(LifesaverLock); + public const string Light = nameof(Light); + public const string Lightbulb = nameof(Lightbulb); + public const string LightbulbSolid = nameof(LightbulbSolid); + public const string LightningBolt = nameof(LightningBolt); + public const string LightningBoltSolid = nameof(LightningBoltSolid); + public const string LightningSecure = nameof(LightningSecure); + public const string LightSnow = nameof(LightSnow); + public const string LightWeight = nameof(LightWeight); + public const string Like = nameof(Like); + public const string LikeSolid = nameof(LikeSolid); + public const string Line = nameof(Line); + public const string LineChart = nameof(LineChart); + public const string LineSpacing = nameof(LineSpacing); + public const string LineStyle = nameof(LineStyle); + public const string LineThickness = nameof(LineThickness); + public const string Link = nameof(Link); + public const string Link12 = nameof(Link12); + public const string LinkedDatabase = nameof(LinkedDatabase); + public const string LinkedInLogo = nameof(LinkedInLogo); + public const string List = nameof(List); + public const string ListMirrored = nameof(ListMirrored); + public const string LiveSite = nameof(LiveSite); + public const string LocalAdmin = nameof(LocalAdmin); + public const string LocaleLanguage = nameof(LocaleLanguage); + public const string Location = nameof(Location); + public const string LocationCircle = nameof(LocationCircle); + public const string LocationDot = nameof(LocationDot); + public const string LocationFill = nameof(LocationFill); + public const string LocationOutline = nameof(LocationOutline); + public const string Lock = nameof(Lock); + public const string Lock12 = nameof(Lock12); + public const string LockShare = nameof(LockShare); + public const string LockSolid = nameof(LockSolid); + public const string LogRemove = nameof(LogRemove); + public const string LookupEntities = nameof(LookupEntities); + public const string LowerBrightness = nameof(LowerBrightness); + public const string LowerCase = nameof(LowerCase); + public const string LyncLogo = nameof(LyncLogo); + public const string M365InvoicingLogo = nameof(M365InvoicingLogo); + public const string MachineLearning = nameof(MachineLearning); + public const string Mail = nameof(Mail); + public const string MailAlert = nameof(MailAlert); + public const string MailAttached = nameof(MailAttached); + public const string MailCheck = nameof(MailCheck); + public const string MailFill = nameof(MailFill); + public const string MailForward = nameof(MailForward); + public const string MailForwardMirrored = nameof(MailForwardMirrored); + public const string MailLink = nameof(MailLink); + public const string MailLowImportance = nameof(MailLowImportance); + public const string MailOptions = nameof(MailOptions); + public const string MailPause = nameof(MailPause); + public const string MailReminder = nameof(MailReminder); + public const string MailRepeat = nameof(MailRepeat); + public const string MailReply = nameof(MailReply); + public const string MailReplyAll = nameof(MailReplyAll); + public const string MailReplyAllMirrored = nameof(MailReplyAllMirrored); + public const string MailReplyMirrored = nameof(MailReplyMirrored); + public const string MailSchedule = nameof(MailSchedule); + public const string MailSecure = nameof(MailSecure); + public const string MailSolid = nameof(MailSolid); + public const string MailTentative = nameof(MailTentative); + public const string MailTentativeMirrored = nameof(MailTentativeMirrored); + public const string MailUndelivered = nameof(MailUndelivered); + public const string ManagerSelfService = nameof(ManagerSelfService); + public const string Manufacturing = nameof(Manufacturing); + public const string MapDirections = nameof(MapDirections); + public const string MapLayers = nameof(MapLayers); + public const string MapPin = nameof(MapPin); + public const string MapPin12 = nameof(MapPin12); + public const string MapPinSolid = nameof(MapPinSolid); + public const string MarkAsProtected = nameof(MarkAsProtected); + public const string MarkDownLanguage = nameof(MarkDownLanguage); + public const string Market = nameof(Market); + public const string MarketDown = nameof(MarketDown); + public const string MasterDatabase = nameof(MasterDatabase); + public const string MaximumValue = nameof(MaximumValue); + public const string Medal = nameof(Medal); + public const string MedalSolid = nameof(MedalSolid); + public const string Media = nameof(Media); + public const string MediaAdd = nameof(MediaAdd); + public const string Medical = nameof(Medical); + public const string MedicalCare = nameof(MedicalCare); + public const string MedicationAdmin = nameof(MedicationAdmin); + public const string MedicationRequest = nameof(MedicationRequest); + public const string Megaphone = nameof(Megaphone); + public const string MegaphoneSolid = nameof(MegaphoneSolid); + public const string Memo = nameof(Memo); + public const string Merge = nameof(Merge); + public const string MergeCase = nameof(MergeCase); + public const string MergeDuplicate = nameof(MergeDuplicate); + public const string Message = nameof(Message); + public const string MessageFill = nameof(MessageFill); + public const string MessageFriendRequest = nameof(MessageFriendRequest); + public const string MetricsFailure = nameof(MetricsFailure); + public const string MetricsInstall = nameof(MetricsInstall); + public const string MetricsUsage = nameof(MetricsUsage); + public const string MicOff = nameof(MicOff); + public const string MicOff2 = nameof(MicOff2); + public const string Microphone = nameof(Microphone); + public const string MicrosoftStaffHubLogo = nameof(MicrosoftStaffHubLogo); + public const string MicrosoftTranslatorLogo = nameof(MicrosoftTranslatorLogo); + public const string MicrosoftTranslatorLogoBlue = nameof(MicrosoftTranslatorLogoBlue); + public const string MicrosoftTranslatorLogoGreen = nameof(MicrosoftTranslatorLogoGreen); + public const string MiniContract = nameof(MiniContract); + public const string MiniContractMirrored = nameof(MiniContractMirrored); + public const string MiniExpand = nameof(MiniExpand); + public const string MiniExpandMirrored = nameof(MiniExpandMirrored); + public const string MiniLink = nameof(MiniLink); + public const string MinimumValue = nameof(MinimumValue); + public const string MobileAngled = nameof(MobileAngled); + public const string MobileReport = nameof(MobileReport); + public const string MobileSelected = nameof(MobileSelected); + public const string ModelAppTemplate32 = nameof(ModelAppTemplate32); + public const string ModelingView = nameof(ModelingView); + public const string Money = nameof(Money); + public const string More = nameof(More); + public const string MoreSports = nameof(MoreSports); + public const string MoreVertical = nameof(MoreVertical); + public const string MostlyClearNight = nameof(MostlyClearNight); + public const string MostlyCloudyFlurriesDay = nameof(MostlyCloudyFlurriesDay); + public const string MostlyCloudyFlurriesNight = nameof(MostlyCloudyFlurriesNight); + public const string MostlyCloudyShowersDay = nameof(MostlyCloudyShowersDay); + public const string MostlyCloudyTStormsDay = nameof(MostlyCloudyTStormsDay); + public const string MostlyCloudyTStormsNight = nameof(MostlyCloudyTStormsNight); + public const string MostlySunnyDay = nameof(MostlySunnyDay); + public const string MountainClimbing = nameof(MountainClimbing); + public const string Move = nameof(Move); + public const string Movers = nameof(Movers); + public const string MoveToFolder = nameof(MoveToFolder); + public const string MSListsConnected = nameof(MSListsConnected); + public const string MSNLogo = nameof(MSNLogo); + public const string MSNVideos = nameof(MSNVideos); + public const string MSNVideosSolid = nameof(MSNVideosSolid); + public const string MSNVolume = nameof(MSNVolume); + public const string MultiSelect = nameof(MultiSelect); + public const string MultiSelectMirrored = nameof(MultiSelectMirrored); + public const string MusicInCollection = nameof(MusicInCollection); + public const string MusicInCollectionFill = nameof(MusicInCollectionFill); + public const string MusicNote = nameof(MusicNote); + public const string MuteChat = nameof(MuteChat); + public const string MyMoviesTV = nameof(MyMoviesTV); + public const string MyNetwork = nameof(MyNetwork); + public const string Nav2DMapView = nameof(Nav2DMapView); + public const string NavigateBack = nameof(NavigateBack); + public const string NavigateBackMirrored = nameof(NavigateBackMirrored); + public const string NavigateExternalInline = nameof(NavigateExternalInline); + public const string NavigateForward = nameof(NavigateForward); + public const string NavigateForwardMirrored = nameof(NavigateForwardMirrored); + public const string NavigationFlipper = nameof(NavigationFlipper); + public const string NetworkDeviceScanning = nameof(NetworkDeviceScanning); + public const string NetworkTower = nameof(NetworkTower); + public const string NewAnalyticsQuery = nameof(NewAnalyticsQuery); + public const string NewFolder = nameof(NewFolder); + public const string NewMail = nameof(NewMail); + public const string News = nameof(News); + public const string NewsSearch = nameof(NewsSearch); + public const string NewTeamProject = nameof(NewTeamProject); + public const string Next = nameof(Next); + public const string NormalWeight = nameof(NormalWeight); + public const string NoteForward = nameof(NoteForward); + public const string NotePinned = nameof(NotePinned); + public const string NoteReply = nameof(NoteReply); + public const string NotExecuted = nameof(NotExecuted); + public const string NotImpactedSolid = nameof(NotImpactedSolid); + public const string NugetLogo = nameof(NugetLogo); + public const string NUIFace = nameof(NUIFace); + public const string Number = nameof(Number); + public const string NumberedList = nameof(NumberedList); + public const string NumberedListMirrored = nameof(NumberedListMirrored); + public const string NumberedListNumber = nameof(NumberedListNumber); + public const string NumberedListNumberMirrored = nameof(NumberedListNumberMirrored); + public const string NumberedListText = nameof(NumberedListText); + public const string NumberedListTextMirrored = nameof(NumberedListTextMirrored); + public const string NumberField = nameof(NumberField); + public const string NumberSequence = nameof(NumberSequence); + public const string NumberSymbol = nameof(NumberSymbol); + public const string Oauth = nameof(Oauth); + public const string ObjectRecognition = nameof(ObjectRecognition); + public const string Octagon = nameof(Octagon); + public const string ODLink = nameof(ODLink); + public const string ODLink12 = nameof(ODLink12); + public const string ODSharedChannel = nameof(ODSharedChannel); + public const string ODSharedChannel12 = nameof(ODSharedChannel12); + public const string OEM = nameof(OEM); + public const string OfficeAddinsLogo = nameof(OfficeAddinsLogo); + public const string OfficeAssistantLogo = nameof(OfficeAssistantLogo); + public const string OfficeCatchUp = nameof(OfficeCatchUp); + public const string OfficeChat = nameof(OfficeChat); + public const string OfficeChatSolid = nameof(OfficeChatSolid); + public const string OfficeFormsLogo = nameof(OfficeFormsLogo); + public const string OfficeFormsLogo16 = nameof(OfficeFormsLogo16); + public const string OfficeFormsLogo24 = nameof(OfficeFormsLogo24); + public const string OfficeFormsLogoInverse = nameof(OfficeFormsLogoInverse); + public const string OfficeFormsLogoInverse16 = nameof(OfficeFormsLogoInverse16); + public const string OfficeFormsLogoInverse24 = nameof(OfficeFormsLogoInverse24); + public const string OfficeLogo = nameof(OfficeLogo); + public const string OfficeStoreLogo = nameof(OfficeStoreLogo); + public const string OfficeVideoLogo = nameof(OfficeVideoLogo); + public const string OfficeVideoLogoFill = nameof(OfficeVideoLogoFill); + public const string OfficeVideoLogoInverse = nameof(OfficeVideoLogoInverse); + public const string OfflineOneDriveParachute = nameof(OfflineOneDriveParachute); + public const string OfflineOneDriveParachuteDisabled = nameof(OfflineOneDriveParachuteDisabled); + public const string OfflineStorage = nameof(OfflineStorage); + public const string OfflineStorageSolid = nameof(OfflineStorageSolid); + public const string Onboarding = nameof(Onboarding); + public const string OneDriveAdd = nameof(OneDriveAdd); + public const string OneDriveFolder16 = nameof(OneDriveFolder16); + public const string OneDriveLogo = nameof(OneDriveLogo); + public const string OneNoteDocType = nameof(OneNoteDocType); + public const string OneNoteEduLogoInverse = nameof(OneNoteEduLogoInverse); + public const string OneNoteLogo = nameof(OneNoteLogo); + public const string OneNoteLogo16 = nameof(OneNoteLogo16); + public const string OneNoteLogoInverse = nameof(OneNoteLogoInverse); + public const string OneNoteLogoInverse16 = nameof(OneNoteLogoInverse16); + public const string OpenEnrollment = nameof(OpenEnrollment); + public const string OpenFile = nameof(OpenFile); + public const string OpenFolderHorizontal = nameof(OpenFolderHorizontal); + public const string OpenInNewTab = nameof(OpenInNewTab); + public const string OpenInNewWindow = nameof(OpenInNewWindow); + public const string OpenPane = nameof(OpenPane); + public const string OpenPaneMirrored = nameof(OpenPaneMirrored); + public const string OpenSource = nameof(OpenSource); + public const string OpenWith = nameof(OpenWith); + public const string OpenWithMirrored = nameof(OpenWithMirrored); + public const string Opportunities = nameof(Opportunities); + public const string OrderLock = nameof(OrderLock); + public const string Org = nameof(Org); + public const string Orientation = nameof(Orientation); + public const string Orientation2 = nameof(Orientation2); + public const string OutlookLogo = nameof(OutlookLogo); + public const string OutlookLogo16 = nameof(OutlookLogo16); + public const string OutlookLogoInverse = nameof(OutlookLogoInverse); + public const string OutlookLogoInverse16 = nameof(OutlookLogoInverse16); + public const string OutlookSpacesBucket = nameof(OutlookSpacesBucket); + public const string OutOfOffice = nameof(OutOfOffice); + public const string PAAction = nameof(PAAction); + public const string Package = nameof(Package); + public const string Packages = nameof(Packages); + public const string Padding = nameof(Padding); + public const string PaddingBottom = nameof(PaddingBottom); + public const string PaddingLeft = nameof(PaddingLeft); + public const string PaddingRight = nameof(PaddingRight); + public const string PaddingTop = nameof(PaddingTop); + public const string Page = nameof(Page); + public const string PageAdd = nameof(PageAdd); + public const string PageArrowRight = nameof(PageArrowRight); + public const string PageBlock = nameof(PageBlock); + public const string PageCheckedIn = nameof(PageCheckedIn); + public const string PageCheckedOut = nameof(PageCheckedOut); + public const string PageData = nameof(PageData); + public const string PageEdit = nameof(PageEdit); + public const string PageHeader = nameof(PageHeader); + public const string PageHeaderEdit = nameof(PageHeaderEdit); + public const string PageLeft = nameof(PageLeft); + public const string PageLink = nameof(PageLink); + public const string PageList = nameof(PageList); + public const string PageListFilter = nameof(PageListFilter); + public const string PageListMirroredSolid = nameof(PageListMirroredSolid); + public const string PageListSolid = nameof(PageListSolid); + public const string PageLock = nameof(PageLock); + public const string PagePermission = nameof(PagePermission); + public const string PageRemove = nameof(PageRemove); + public const string PageRight = nameof(PageRight); + public const string PageShared = nameof(PageShared); + public const string PageSolid = nameof(PageSolid); + public const string PanoIndicator = nameof(PanoIndicator); + public const string Parachute = nameof(Parachute); + public const string ParachuteSolid = nameof(ParachuteSolid); + public const string Parameter = nameof(Parameter); + public const string ParkingLocation = nameof(ParkingLocation); + public const string ParkingLocationMirrored = nameof(ParkingLocationMirrored); + public const string ParkingMirroredSolid = nameof(ParkingMirroredSolid); + public const string ParkingSolid = nameof(ParkingSolid); + public const string PartlyClearNight = nameof(PartlyClearNight); + public const string PartlyCloudyDay = nameof(PartlyCloudyDay); + public const string PartlyCloudyNight = nameof(PartlyCloudyNight); + public const string PartlySunnyDay = nameof(PartlySunnyDay); + public const string PartlySunnyFlurriesDay = nameof(PartlySunnyFlurriesDay); + public const string PartlySunnyShowersDay = nameof(PartlySunnyShowersDay); + public const string PartlySunnyShowersNight = nameof(PartlySunnyShowersNight); + public const string PartlySunnyTStormsDay = nameof(PartlySunnyTStormsDay); + public const string PartlySunnyTStormsNight = nameof(PartlySunnyTStormsNight); + public const string PartyLeader = nameof(PartyLeader); + public const string PassiveAuthentication = nameof(PassiveAuthentication); + public const string PasswordField = nameof(PasswordField); + public const string Paste = nameof(Paste); + public const string PasteAsCode = nameof(PasteAsCode); + public const string PasteAsText = nameof(PasteAsText); + public const string Pause = nameof(Pause); + public const string PaymentCard = nameof(PaymentCard); + public const string PBIAnomaliesMarker = nameof(PBIAnomaliesMarker); + public const string PBIAnomaly = nameof(PBIAnomaly); + public const string PBIColumn = nameof(PBIColumn); + public const string PBIConnectPoints = nameof(PBIConnectPoints); + public const string PBIDirectQuery = nameof(PBIDirectQuery); + public const string PBIDual = nameof(PBIDual); + public const string PBIGap = nameof(PBIGap); + public const string PBIGoalEntry = nameof(PBIGoalEntry); + public const string PBIGoalEntryAdd = nameof(PBIGoalEntryAdd); + public const string PBIHomeLayoutDefault = nameof(PBIHomeLayoutDefault); + public const string PBIHomeLayoutExpanded = nameof(PBIHomeLayoutExpanded); + public const string PBIImport = nameof(PBIImport); + public const string PBILiveConnect = nameof(PBILiveConnect); + public const string PBIPerspective = nameof(PBIPerspective); + public const string PBIReportTemplate = nameof(PBIReportTemplate); + public const string PBIZero = nameof(PBIZero); + public const string PC1 = nameof(PC1); + public const string PDF = nameof(PDF); + public const string PencilReply = nameof(PencilReply); + public const string Pentagon = nameof(Pentagon); + public const string PenWorkspace = nameof(PenWorkspace); + public const string People = nameof(People); + public const string PeopleAdd = nameof(PeopleAdd); + public const string PeopleAlert = nameof(PeopleAlert); + public const string PeopleBlock = nameof(PeopleBlock); + public const string PeopleExternalShare = nameof(PeopleExternalShare); + public const string PeoplePause = nameof(PeoplePause); + public const string PeopleRepeat = nameof(PeopleRepeat); + public const string PeopleSettings = nameof(PeopleSettings); + public const string Permissions = nameof(Permissions); + public const string PermissionsSolid = nameof(PermissionsSolid); + public const string Personalize = nameof(Personalize); + public const string Phishing = nameof(Phishing); + public const string PhishingCampaign = nameof(PhishingCampaign); + public const string PhishingHook = nameof(PhishingHook); + public const string Phone = nameof(Phone); + public const string Photo = nameof(Photo); + public const string Photo2 = nameof(Photo2); + public const string Photo2Add = nameof(Photo2Add); + public const string Photo2Fill = nameof(Photo2Fill); + public const string Photo2Remove = nameof(Photo2Remove); + public const string PhotoBlock = nameof(PhotoBlock); + public const string PhotoCollection = nameof(PhotoCollection); + public const string PhotoError = nameof(PhotoError); + public const string PhotoVideoMedia = nameof(PhotoVideoMedia); + public const string Picture = nameof(Picture); + public const string PictureCenter = nameof(PictureCenter); + public const string PictureFill = nameof(PictureFill); + public const string PictureLibrary = nameof(PictureLibrary); + public const string PicturePosition = nameof(PicturePosition); + public const string PictureStretch = nameof(PictureStretch); + public const string PictureTile = nameof(PictureTile); + public const string PieDouble = nameof(PieDouble); + public const string PieSingle = nameof(PieSingle); + public const string PieSingleSolid = nameof(PieSingleSolid); + public const string Pill = nameof(Pill); + public const string Pin = nameof(Pin); + public const string PinNavMenu = nameof(PinNavMenu); + public const string Pinned = nameof(Pinned); + public const string PinnedFill = nameof(PinnedFill); + public const string PinnedSolid = nameof(PinnedSolid); + public const string PinOff = nameof(PinOff); + public const string PinOffSolid = nameof(PinOffSolid); + public const string PinSolid = nameof(PinSolid); + public const string PinSolid12 = nameof(PinSolid12); + public const string PinSolidOff12 = nameof(PinSolidOff12); + public const string PinToTab = nameof(PinToTab); + public const string PivotChart = nameof(PivotChart); + public const string PlainText = nameof(PlainText); + public const string PlannerLogo = nameof(PlannerLogo); + public const string PlanView = nameof(PlanView); + public const string Play = nameof(Play); + public const string PlaybackRate1x = nameof(PlaybackRate1x); + public const string PlayerSettings = nameof(PlayerSettings); + public const string PlaylistMusic = nameof(PlaylistMusic); + public const string PlayResume = nameof(PlayResume); + public const string PlayReverse = nameof(PlayReverse); + public const string PlayReverseResume = nameof(PlayReverseResume); + public const string PlaySolid = nameof(PlaySolid); + public const string Plug = nameof(Plug); + public const string PlugConnected = nameof(PlugConnected); + public const string PlugDisconnected = nameof(PlugDisconnected); + public const string PlugSolid = nameof(PlugSolid); + public const string POI = nameof(POI); + public const string POISolid = nameof(POISolid); + public const string PollResults = nameof(PollResults); + public const string PopExpand = nameof(PopExpand); + public const string PortalAppTemplate32 = nameof(PortalAppTemplate32); + public const string PostUpdate = nameof(PostUpdate); + public const string PowerApps = nameof(PowerApps); + public const string PowerApps2Logo = nameof(PowerApps2Logo); + public const string PowerAppsLogo = nameof(PowerAppsLogo); + public const string PowerAppsTemplate = nameof(PowerAppsTemplate); + public const string PowerAutomateLogo = nameof(PowerAutomateLogo); + public const string PowerBILogo = nameof(PowerBILogo); + public const string PowerBILogo16 = nameof(PowerBILogo16); + public const string PowerBILogoBackplate16 = nameof(PowerBILogoBackplate16); + public const string PowerButton = nameof(PowerButton); + public const string PowerPointDocument = nameof(PowerPointDocument); + public const string PowerPointLogo = nameof(PowerPointLogo); + public const string PowerPointLogo16 = nameof(PowerPointLogo16); + public const string PowerPointLogoInverse = nameof(PowerPointLogoInverse); + public const string PowerPointLogoInverse16 = nameof(PowerPointLogoInverse16); + public const string PowerShell = nameof(PowerShell); + public const string PowerShell2 = nameof(PowerShell2); + public const string PowerStandby = nameof(PowerStandby); + public const string PowerVirtualAgentsLogo = nameof(PowerVirtualAgentsLogo); + public const string Precipitation = nameof(Precipitation); + public const string PresenceChickletVideo = nameof(PresenceChickletVideo); + public const string Presentation = nameof(Presentation); + public const string Presentation12 = nameof(Presentation12); + public const string Preview = nameof(Preview); + public const string PreviewBelow = nameof(PreviewBelow); + public const string PreviewLink = nameof(PreviewLink); + public const string PreviewSideBySide = nameof(PreviewSideBySide); + public const string Previous = nameof(Previous); + public const string PrimaryCalendar = nameof(PrimaryCalendar); + public const string Print = nameof(Print); + public const string PrintFaxPrinterFile = nameof(PrintFaxPrinterFile); + public const string Priority = nameof(Priority); + public const string Process = nameof(Process); + public const string ProcessAdvisor = nameof(ProcessAdvisor); + public const string Processing = nameof(Processing); + public const string ProcessingCancel = nameof(ProcessingCancel); + public const string ProcessingPause = nameof(ProcessingPause); + public const string ProcessingRun = nameof(ProcessingRun); + public const string ProcessMap = nameof(ProcessMap); + public const string ProcessMetaTask = nameof(ProcessMetaTask); + public const string Product = nameof(Product); + public const string ProductCatalog = nameof(ProductCatalog); + public const string ProductionFloorManagement = nameof(ProductionFloorManagement); + public const string ProductList = nameof(ProductList); + public const string ProductRelease = nameof(ProductRelease); + public const string ProductVariant = nameof(ProductVariant); + public const string ProductWarning = nameof(ProductWarning); + public const string ProfileSearch = nameof(ProfileSearch); + public const string ProFootball = nameof(ProFootball); + public const string ProgressLoopInner = nameof(ProgressLoopInner); + public const string ProgressLoopOuter = nameof(ProgressLoopOuter); + public const string ProgressRing5 = nameof(ProgressRing5); + public const string ProgressRingDots = nameof(ProgressRingDots); + public const string ProHockey = nameof(ProHockey); + public const string ProjectCollection = nameof(ProjectCollection); + public const string ProjectDocument = nameof(ProjectDocument); + public const string ProjectLogo16 = nameof(ProjectLogo16); + public const string ProjectLogo32 = nameof(ProjectLogo32); + public const string ProjectLogoInverse = nameof(ProjectLogoInverse); + public const string ProjectManagement = nameof(ProjectManagement); + public const string PromotedDatabase = nameof(PromotedDatabase); + public const string Pronouns = nameof(Pronouns); + public const string ProtectedDocument = nameof(ProtectedDocument); + public const string ProtectionCenterLogo32 = nameof(ProtectionCenterLogo32); + public const string ProtectRestrict = nameof(ProtectRestrict); + public const string ProvisioningPackage = nameof(ProvisioningPackage); + public const string PublicCalendar = nameof(PublicCalendar); + public const string PublicContactCard = nameof(PublicContactCard); + public const string PublicContactCardMirrored = nameof(PublicContactCardMirrored); + public const string PublicEmail = nameof(PublicEmail); + public const string PublicFolder = nameof(PublicFolder); + public const string PublishContent = nameof(PublishContent); + public const string PublishCourse = nameof(PublishCourse); + public const string PublisherLogo = nameof(PublisherLogo); + public const string PublisherLogo16 = nameof(PublisherLogo16); + public const string PublisherLogoInverse16 = nameof(PublisherLogoInverse16); + public const string Puzzle = nameof(Puzzle); + public const string PY = nameof(PY); + public const string PythonLanguage = nameof(PythonLanguage); + public const string QandA = nameof(QandA); + public const string QandAMirror = nameof(QandAMirror); + public const string QRCode = nameof(QRCode); + public const string QuadColumn = nameof(QuadColumn); + public const string Quantity = nameof(Quantity); + public const string QuarterCircle = nameof(QuarterCircle); + public const string QueryList = nameof(QueryList); + public const string Questionnaire = nameof(Questionnaire); + public const string QuestionnaireMirrored = nameof(QuestionnaireMirrored); + public const string QueueAdvanced = nameof(QueueAdvanced); + public const string QuickNote = nameof(QuickNote); + public const string QuickNoteSolid = nameof(QuickNoteSolid); + public const string Quotes = nameof(Quotes); + public const string R = nameof(R); + public const string RadioBtnOff = nameof(RadioBtnOff); + public const string RadioBtnOn = nameof(RadioBtnOn); + public const string RadioBullet = nameof(RadioBullet); + public const string Rain = nameof(Rain); + public const string RainShowersDay = nameof(RainShowersDay); + public const string RainShowersNight = nameof(RainShowersNight); + public const string RainSnow = nameof(RainSnow); + public const string Rate = nameof(Rate); + public const string RawSource = nameof(RawSource); + public const string Read = nameof(Read); + public const string ReadingMode = nameof(ReadingMode); + public const string ReadingModeSolid = nameof(ReadingModeSolid); + public const string ReadOutLoud = nameof(ReadOutLoud); + public const string RealEstate = nameof(RealEstate); + public const string ReceiptCheck = nameof(ReceiptCheck); + public const string ReceiptForward = nameof(ReceiptForward); + public const string ReceiptProcessing = nameof(ReceiptProcessing); + public const string ReceiptReply = nameof(ReceiptReply); + public const string ReceiptTentative = nameof(ReceiptTentative); + public const string ReceiptTentativeMirrored = nameof(ReceiptTentativeMirrored); + public const string ReceiptUndelivered = nameof(ReceiptUndelivered); + public const string Recent = nameof(Recent); + public const string Record2 = nameof(Record2); + public const string RecordRouting = nameof(RecordRouting); + public const string RecruitmentManagement = nameof(RecruitmentManagement); + public const string RectangleShape = nameof(RectangleShape); + public const string RectangleShapeSolid = nameof(RectangleShapeSolid); + public const string RectangularClipping = nameof(RectangularClipping); + public const string RecurringEvent = nameof(RecurringEvent); + public const string RecurringTask = nameof(RecurringTask); + public const string RecycleBin = nameof(RecycleBin); + public const string Redeploy = nameof(Redeploy); + public const string RedEye = nameof(RedEye); + public const string RedEye12 = nameof(RedEye12); + public const string Redo = nameof(Redo); + public const string Refresh = nameof(Refresh); + public const string RegistryEditor = nameof(RegistryEditor); + public const string Relationship = nameof(Relationship); + public const string ReleaseDefinition = nameof(ReleaseDefinition); + public const string ReleaseGate = nameof(ReleaseGate); + public const string ReleaseGateCheck = nameof(ReleaseGateCheck); + public const string ReleaseGateError = nameof(ReleaseGateError); + public const string ReminderGroup = nameof(ReminderGroup); + public const string ReminderPerson = nameof(ReminderPerson); + public const string ReminderTime = nameof(ReminderTime); + public const string Remote = nameof(Remote); + public const string RemoteApplication = nameof(RemoteApplication); + public const string Remove = nameof(Remove); + public const string RemoveContent = nameof(RemoveContent); + public const string RemoveEvent = nameof(RemoveEvent); + public const string RemoveFilter = nameof(RemoveFilter); + public const string RemoveFrom = nameof(RemoveFrom); + public const string RemoveFromShoppingList = nameof(RemoveFromShoppingList); + public const string RemoveFromTrash = nameof(RemoveFromTrash); + public const string RemoveLink = nameof(RemoveLink); + public const string RemoveLinkChain = nameof(RemoveLinkChain); + public const string RemoveLinkX = nameof(RemoveLinkX); + public const string RemoveOccurrence = nameof(RemoveOccurrence); + public const string Rename = nameof(Rename); + public const string RenewalCurrent = nameof(RenewalCurrent); + public const string RenewalFuture = nameof(RenewalFuture); + public const string ReopenPages = nameof(ReopenPages); + public const string Repair = nameof(Repair); + public const string RepeatAll = nameof(RepeatAll); + public const string RepeatHeaderRows = nameof(RepeatHeaderRows); + public const string RepeatOne = nameof(RepeatOne); + public const string Reply = nameof(Reply); + public const string ReplyAll = nameof(ReplyAll); + public const string ReplyAllAlt = nameof(ReplyAllAlt); + public const string ReplyAllMirrored = nameof(ReplyAllMirrored); + public const string ReplyAlt = nameof(ReplyAlt); + public const string ReplyMirrored = nameof(ReplyMirrored); + public const string Repo = nameof(Repo); + public const string ReportAdd = nameof(ReportAdd); + public const string ReportAlert = nameof(ReportAlert); + public const string ReportAlertMirrored = nameof(ReportAlertMirrored); + public const string ReportDocument = nameof(ReportDocument); + public const string ReportHacked = nameof(ReportHacked); + public const string ReportLibrary = nameof(ReportLibrary); + public const string ReportLibraryMirrored = nameof(ReportLibraryMirrored); + public const string ReportLock = nameof(ReportLock); + public const string ReportTrophy = nameof(ReportTrophy); + public const string ReportWarning = nameof(ReportWarning); + public const string RepoSolid = nameof(RepoSolid); + public const string Rerun = nameof(Rerun); + public const string ReservationOrders = nameof(ReservationOrders); + public const string Reset = nameof(Reset); + public const string ResetDevice = nameof(ResetDevice); + public const string ResponsesMenu = nameof(ResponsesMenu); + public const string ReturnKey = nameof(ReturnKey); + public const string ReturnToSession = nameof(ReturnToSession); + public const string RevenueManagement = nameof(RevenueManagement); + public const string ReviewRequestMirroredSolid = nameof(ReviewRequestMirroredSolid); + public const string ReviewRequestSolid = nameof(ReviewRequestSolid); + public const string ReviewResponseSolid = nameof(ReviewResponseSolid); + public const string ReviewSolid = nameof(ReviewSolid); + public const string RevToggleKey = nameof(RevToggleKey); + public const string RewardsLogo = nameof(RewardsLogo); + public const string RewardsLogoArt64 = nameof(RewardsLogoArt64); + public const string RewardsLogoSolid = nameof(RewardsLogoSolid); + public const string Rewind = nameof(Rewind); + public const string RewindEightX = nameof(RewindEightX); + public const string RewindFourX = nameof(RewindFourX); + public const string RewindOneFiveX = nameof(RewindOneFiveX); + public const string RewindOneX = nameof(RewindOneX); + public const string RewindPointFiveX = nameof(RewindPointFiveX); + public const string RewindTwoX = nameof(RewindTwoX); + public const string Ribbon = nameof(Ribbon); + public const string Ribbon2 = nameof(Ribbon2); + public const string RibbonSolid = nameof(RibbonSolid); + public const string RightDoubleQuote = nameof(RightDoubleQuote); + public const string RightKey = nameof(RightKey); + public const string RightTriangle = nameof(RightTriangle); + public const string Ringer = nameof(Ringer); + public const string RingerActive = nameof(RingerActive); + public const string RingerOff = nameof(RingerOff); + public const string RingerRemove = nameof(RingerRemove); + public const string RingerSolid = nameof(RingerSolid); + public const string Robot = nameof(Robot); + public const string Rocket = nameof(Rocket); + public const string Room = nameof(Room); + public const string Rotate = nameof(Rotate); + public const string Rotate90Clockwise = nameof(Rotate90Clockwise); + public const string Rotate90CounterClockwise = nameof(Rotate90CounterClockwise); + public const string RowsChild = nameof(RowsChild); + public const string RowsGroup = nameof(RowsGroup); + public const string RssFeed = nameof(RssFeed); + public const string Rugby = nameof(Rugby); + public const string Running = nameof(Running); + public const string Sad = nameof(Sad); + public const string SadSolid = nameof(SadSolid); + public const string SamsungGallery = nameof(SamsungGallery); + public const string Save = nameof(Save); + public const string SaveAll = nameof(SaveAll); + public const string SaveAndClose = nameof(SaveAndClose); + public const string SaveAndPublish = nameof(SaveAndPublish); + public const string SaveAs = nameof(SaveAs); + public const string SavedOffline = nameof(SavedOffline); + public const string SaveTemplate = nameof(SaveTemplate); + public const string SaveToMobile = nameof(SaveToMobile); + public const string Savings = nameof(Savings); + public const string ScaleUp = nameof(ScaleUp); + public const string ScaleVolume = nameof(ScaleVolume); + public const string ScatterChart = nameof(ScatterChart); + public const string ScheduleEventAction = nameof(ScheduleEventAction); + public const string SchoolDataSyncLogo = nameof(SchoolDataSyncLogo); + public const string ScopeTemplate = nameof(ScopeTemplate); + public const string Screen = nameof(Screen); + public const string ScreenCast = nameof(ScreenCast); + public const string ScreenPreviewOn = nameof(ScreenPreviewOn); + public const string ScreenTime = nameof(ScreenTime); + public const string Script = nameof(Script); + public const string ScrollUpDown = nameof(ScrollUpDown); + public const string SDCard = nameof(SDCard); + public const string Search = nameof(Search); + public const string SearchAndApps = nameof(SearchAndApps); + public const string SearchArt64 = nameof(SearchArt64); + public const string SearchBookmark = nameof(SearchBookmark); + public const string SearchCalendar = nameof(SearchCalendar); + public const string SearchData = nameof(SearchData); + public const string SearchIssue = nameof(SearchIssue); + public const string SearchIssueMirrored = nameof(SearchIssueMirrored); + public const string SearchNearby = nameof(SearchNearby); + public const string SecondaryNav = nameof(SecondaryNav); + public const string Section = nameof(Section); + public const string Sections = nameof(Sections); + public const string SecurityCamera = nameof(SecurityCamera); + public const string SecurityGroup = nameof(SecurityGroup); + public const string SecurityTest = nameof(SecurityTest); + public const string SeeDo = nameof(SeeDo); + public const string SelectAll = nameof(SelectAll); + public const string Sell = nameof(Sell); + public const string SemiboldWeight = nameof(SemiboldWeight); + public const string Send = nameof(Send); + public const string SendMirrored = nameof(SendMirrored); + public const string SentimentAnalysis = nameof(SentimentAnalysis); + public const string Separator = nameof(Separator); + public const string Server = nameof(Server); + public const string ServerEnvironment = nameof(ServerEnvironment); + public const string ServerProcesses = nameof(ServerProcesses); + public const string ServiceActivity = nameof(ServiceActivity); + public const string ServiceOff = nameof(ServiceOff); + public const string SetAction = nameof(SetAction); + public const string Settings = nameof(Settings); + public const string SettingsAdd = nameof(SettingsAdd); + public const string SettingsSecure = nameof(SettingsSecure); + public const string SettingsSync = nameof(SettingsSync); + public const string ShakeDevice = nameof(ShakeDevice); + public const string Shapes = nameof(Shapes); + public const string ShapeSolid = nameof(ShapeSolid); + public const string Share = nameof(Share); + public const string SharedDatabase = nameof(SharedDatabase); + public const string SharedNotes = nameof(SharedNotes); + public const string ShareiOS = nameof(ShareiOS); + public const string SharePoint2013LogoInverse = nameof(SharePoint2013LogoInverse); + public const string SharePointAppIcon16 = nameof(SharePointAppIcon16); + public const string SharePointLogo = nameof(SharePointLogo); + public const string SharePointLogoInverse = nameof(SharePointLogoInverse); + public const string Shield = nameof(Shield); + public const string ShieldAlert = nameof(ShieldAlert); + public const string ShieldSolid = nameof(ShieldSolid); + public const string Shirt = nameof(Shirt); + public const string Shop = nameof(Shop); + public const string ShopBrand = nameof(ShopBrand); + public const string ShoppingCart = nameof(ShoppingCart); + public const string ShoppingCartSolid = nameof(ShoppingCartSolid); + public const string ShopServer = nameof(ShopServer); + public const string Showers = nameof(Showers); + public const string ShowGrid = nameof(ShowGrid); + public const string ShowResults = nameof(ShowResults); + public const string ShowResultsMirrored = nameof(ShowResultsMirrored); + public const string ShowTimeAs = nameof(ShowTimeAs); + public const string ShowVisualFilter = nameof(ShowVisualFilter); + public const string SidePanel = nameof(SidePanel); + public const string SidePanelMirrored = nameof(SidePanelMirrored); + public const string Signin = nameof(Signin); + public const string SignOut = nameof(SignOut); + public const string SimplifiedView = nameof(SimplifiedView); + public const string SingleBookmark = nameof(SingleBookmark); + public const string SingleBookmarkSolid = nameof(SingleBookmarkSolid); + public const string SingleColumn = nameof(SingleColumn); + public const string SingleColumnEdit = nameof(SingleColumnEdit); + public const string SIPMove = nameof(SIPMove); + public const string SiteScan = nameof(SiteScan); + public const string SizeLegacy = nameof(SizeLegacy); + public const string SkipBack10 = nameof(SkipBack10); + public const string SkipForward30 = nameof(SkipForward30); + public const string SkiResorts = nameof(SkiResorts); + public const string SkypeArrow = nameof(SkypeArrow); + public const string SkypeCheck = nameof(SkypeCheck); + public const string SkypeCircleArrow = nameof(SkypeCircleArrow); + public const string SkypeCircleCheck = nameof(SkypeCircleCheck); + public const string SkypeCircleClock = nameof(SkypeCircleClock); + public const string SkypeCircleMinus = nameof(SkypeCircleMinus); + public const string SkypeCircleSlash = nameof(SkypeCircleSlash); + public const string SkypeClock = nameof(SkypeClock); + public const string SkypeForBusinessLogo = nameof(SkypeForBusinessLogo); + public const string SkypeForBusinessLogo16 = nameof(SkypeForBusinessLogo16); + public const string SkypeForBusinessLogoFill = nameof(SkypeForBusinessLogoFill); + public const string SkypeForBusinessLogoFill16 = nameof(SkypeForBusinessLogoFill16); + public const string SkypeLogo = nameof(SkypeLogo); + public const string SkypeLogo16 = nameof(SkypeLogo16); + public const string SkypeMessage = nameof(SkypeMessage); + public const string SkypeMinus = nameof(SkypeMinus); + public const string SkypeSlash = nameof(SkypeSlash); + public const string Sleet = nameof(Sleet); + public const string Slider = nameof(Slider); + public const string SliderHandleSize = nameof(SliderHandleSize); + public const string SliderThumb = nameof(SliderThumb); + public const string Slideshow = nameof(Slideshow); + public const string SmartGlassRemote = nameof(SmartGlassRemote); + public const string SnapToGrid = nameof(SnapToGrid); + public const string Snooze = nameof(Snooze); + public const string Snow = nameof(Snow); + public const string Snowflake = nameof(Snowflake); + public const string SnowShowerDay = nameof(SnowShowerDay); + public const string SnowShowerNight = nameof(SnowShowerNight); + public const string Soccer = nameof(Soccer); + public const string SocialListeningLogo = nameof(SocialListeningLogo); + public const string Sort = nameof(Sort); + public const string SortDown = nameof(SortDown); + public const string SortLines = nameof(SortLines); + public const string SortLinesAscending = nameof(SortLinesAscending); + public const string SortUp = nameof(SortUp); + public const string Source = nameof(Source); + public const string Spacer = nameof(Spacer); + public const string Speakers = nameof(Speakers); + public const string SpecialEvent = nameof(SpecialEvent); + public const string Speech = nameof(Speech); + public const string SpeechOff = nameof(SpeechOff); + public const string SpeedHigh = nameof(SpeedHigh); + public const string Spelling = nameof(Spelling); + public const string Split = nameof(Split); + public const string SplitObject = nameof(SplitObject); + public const string Sprint = nameof(Sprint); + public const string SQLAnalyticsPool = nameof(SQLAnalyticsPool); + public const string SQLServerLogo = nameof(SQLServerLogo); + public const string Squalls = nameof(Squalls); + public const string SquareShape = nameof(SquareShape); + public const string SquareShapeSolid = nameof(SquareShapeSolid); + public const string SslCertificate = nameof(SslCertificate); + public const string Stack = nameof(Stack); + public const string StackColumnChart = nameof(StackColumnChart); + public const string StackedBarChart = nameof(StackedBarChart); + public const string StackedBarChartFull = nameof(StackedBarChartFull); + public const string StackedBarChartFullSettings = nameof(StackedBarChartFullSettings); + public const string StackedColumnChart2 = nameof(StackedColumnChart2); + public const string StackedColumnChart2Fill = nameof(StackedColumnChart2Fill); + public const string StackedLineChart = nameof(StackedLineChart); + public const string StackIndicator = nameof(StackIndicator); + public const string StaffNotebookLogo16 = nameof(StaffNotebookLogo16); + public const string StaffNotebookLogo32 = nameof(StaffNotebookLogo32); + public const string StaffNotebookLogoFill16 = nameof(StaffNotebookLogoFill16); + public const string StaffNotebookLogoFill32 = nameof(StaffNotebookLogoFill32); + public const string StaffNotebookLogoInverted16 = nameof(StaffNotebookLogoInverted16); + public const string StaffNotebookLogoInverted32 = nameof(StaffNotebookLogoInverted32); + public const string Starburst = nameof(Starburst); + public const string StarburstSolid = nameof(StarburstSolid); + public const string StatusCircleBlock = nameof(StatusCircleBlock); + public const string StatusCircleBlock2 = nameof(StatusCircleBlock2); + public const string StatusCircleCheckmark = nameof(StatusCircleCheckmark); + public const string StatusCircleErrorX = nameof(StatusCircleErrorX); + public const string StatusCircleExclamation = nameof(StatusCircleExclamation); + public const string StatusCircleInfo = nameof(StatusCircleInfo); + public const string StatusCircleInner = nameof(StatusCircleInner); + public const string StatusCircleOuter = nameof(StatusCircleOuter); + public const string StatusCircleQuestionMark = nameof(StatusCircleQuestionMark); + public const string StatusCircleRing = nameof(StatusCircleRing); + public const string StatusCircleSync = nameof(StatusCircleSync); + public const string StatusErrorFull = nameof(StatusErrorFull); + public const string StatusTriangle = nameof(StatusTriangle); + public const string StatusTriangleExclamation = nameof(StatusTriangleExclamation); + public const string StatusTriangleInner = nameof(StatusTriangleInner); + public const string StatusTriangleOuter = nameof(StatusTriangleOuter); + public const string Step = nameof(Step); + public const string StepBackward = nameof(StepBackward); + public const string StepInsert = nameof(StepInsert); + public const string StepInto = nameof(StepInto); + public const string StepOut = nameof(StepOut); + public const string StepOver = nameof(StepOver); + public const string StepShared = nameof(StepShared); + public const string StepSharedAdd = nameof(StepSharedAdd); + public const string StepSharedInsert = nameof(StepSharedInsert); + public const string StickyNotesOutlineAppIcon = nameof(StickyNotesOutlineAppIcon); + public const string StickyNotesSolidAppIcon = nameof(StickyNotesSolidAppIcon); + public const string StockDown = nameof(StockDown); + public const string StockUp = nameof(StockUp); + public const string Stop = nameof(Stop); + public const string StopSolid = nameof(StopSolid); + public const string Stopwatch = nameof(Stopwatch); + public const string StorageAccount = nameof(StorageAccount); + public const string StorageOptical = nameof(StorageOptical); + public const string StoreLogo16 = nameof(StoreLogo16); + public const string StoreLogoMed20 = nameof(StoreLogoMed20); + public const string Storyboard = nameof(Storyboard); + public const string StreamDiscover = nameof(StreamDiscover); + public const string Streaming = nameof(Streaming); + public const string StreamingDataflow = nameof(StreamingDataflow); + public const string StreamingDataset = nameof(StreamingDataset); + public const string StreamingOff = nameof(StreamingOff); + public const string StreamLogo = nameof(StreamLogo); + public const string StreamPlaylist = nameof(StreamPlaylist); + public const string Street = nameof(Street); + public const string StreetsideSplitMinimize = nameof(StreetsideSplitMinimize); + public const string Strikethrough = nameof(Strikethrough); + public const string StrikethroughKorean = nameof(StrikethroughKorean); + public const string Subscribe = nameof(Subscribe); + public const string Subscript = nameof(Subscript); + public const string SubstitutionsIn = nameof(SubstitutionsIn); + public const string SubtractShape = nameof(SubtractShape); + public const string Suitcase = nameof(Suitcase); + public const string SummaryChart = nameof(SummaryChart); + public const string SunAdd = nameof(SunAdd); + public const string Sunny = nameof(Sunny); + public const string SunQuestionMark = nameof(SunQuestionMark); + public const string Superscript = nameof(Superscript); + public const string SurveyQuestionResponse = nameof(SurveyQuestionResponse); + public const string SurveyQuestions = nameof(SurveyQuestions); + public const string SwayLogo16 = nameof(SwayLogo16); + public const string SwayLogo32 = nameof(SwayLogo32); + public const string SwayLogoFill16 = nameof(SwayLogoFill16); + public const string SwayLogoFill32 = nameof(SwayLogoFill32); + public const string SwayLogoInverse = nameof(SwayLogoInverse); + public const string Switch = nameof(Switch); + public const string SwitcherStartEnd = nameof(SwitcherStartEnd); + public const string SwitchUser = nameof(SwitchUser); + public const string Sync = nameof(Sync); + public const string SyncError = nameof(SyncError); + public const string SyncFolder = nameof(SyncFolder); + public const string SyncOccurrence = nameof(SyncOccurrence); + public const string SyncOccurrenceCancel = nameof(SyncOccurrenceCancel); + public const string SyncStatus = nameof(SyncStatus); + public const string SyncStatusSolid = nameof(SyncStatusSolid); + public const string SyncToPC = nameof(SyncToPC); + public const string System = nameof(System); + public const string Tab = nameof(Tab); + public const string TabCenter = nameof(TabCenter); + public const string Table = nameof(Table); + public const string TableBrandedColumn = nameof(TableBrandedColumn); + public const string TableBrandedRow = nameof(TableBrandedRow); + public const string TableColumn = nameof(TableColumn); + public const string TableComputed = nameof(TableComputed); + public const string TableFirstColumn = nameof(TableFirstColumn); + public const string TableGroup = nameof(TableGroup); + public const string TableHeaderRow = nameof(TableHeaderRow); + public const string TableLastColumn = nameof(TableLastColumn); + public const string TableLink = nameof(TableLink); + public const string TablePermission = nameof(TablePermission); + public const string Tablet = nameof(Tablet); + public const string TabletMode = nameof(TabletMode); + public const string TableTotalRow = nameof(TableTotalRow); + public const string TabletSelected = nameof(TabletSelected); + public const string TabOneColumn = nameof(TabOneColumn); + public const string TabThreeColumn = nameof(TabThreeColumn); + public const string TabTwoColumn = nameof(TabTwoColumn); + public const string Tag = nameof(Tag); + public const string TagGroup = nameof(TagGroup); + public const string TagSolid = nameof(TagSolid); + public const string TagUnknown = nameof(TagUnknown); + public const string TagUnknown12 = nameof(TagUnknown12); + public const string TagUnknown12Mirror = nameof(TagUnknown12Mirror); + public const string TagUnknownMirror = nameof(TagUnknownMirror); + public const string Task = nameof(Task); + public const string TaskAdd = nameof(TaskAdd); + public const string Taskboard = nameof(Taskboard); + public const string TaskGroup = nameof(TaskGroup); + public const string TaskGroupMirrored = nameof(TaskGroupMirrored); + public const string TaskList = nameof(TaskList); + public const string TaskLogo = nameof(TaskLogo); + public const string TaskManager = nameof(TaskManager); + public const string TaskManagerMirrored = nameof(TaskManagerMirrored); + public const string TaskSolid = nameof(TaskSolid); + public const string Taxi = nameof(Taxi); + public const string TeamFavorite = nameof(TeamFavorite); + public const string TeamsLogo = nameof(TeamsLogo); + public const string TeamsLogo16 = nameof(TeamsLogo16); + public const string TeamsLogoInverse = nameof(TeamsLogoInverse); + public const string Teamwork = nameof(Teamwork); + public const string Teeth = nameof(Teeth); + public const string Telemarketer = nameof(Telemarketer); + public const string TemporaryAccessPass = nameof(TemporaryAccessPass); + public const string TemporaryUser = nameof(TemporaryUser); + public const string Tennis = nameof(Tennis); + public const string TestAdd = nameof(TestAdd); + public const string TestAutoSolid = nameof(TestAutoSolid); + public const string TestBeaker = nameof(TestBeaker); + public const string TestBeakerSolid = nameof(TestBeakerSolid); + public const string TestCase = nameof(TestCase); + public const string TestExploreSolid = nameof(TestExploreSolid); + public const string TestImpactSolid = nameof(TestImpactSolid); + public const string TestParameter = nameof(TestParameter); + public const string TestPlan = nameof(TestPlan); + public const string TestRemove = nameof(TestRemove); + public const string TestStep = nameof(TestStep); + public const string TestSuite = nameof(TestSuite); + public const string TestUserSolid = nameof(TestUserSolid); + public const string TextAlignBottom = nameof(TextAlignBottom); + public const string TextAlignMiddle = nameof(TextAlignMiddle); + public const string TextAlignTop = nameof(TextAlignTop); + public const string TextBox = nameof(TextBox); + public const string TextCallout = nameof(TextCallout); + public const string TextDocument = nameof(TextDocument); + public const string TextDocumentEdit = nameof(TextDocumentEdit); + public const string TextDocumentSettings = nameof(TextDocumentSettings); + public const string TextDocumentShared = nameof(TextDocumentShared); + public const string TextField = nameof(TextField); + public const string TextOverflow = nameof(TextOverflow); + public const string TextParagraphOption = nameof(TextParagraphOption); + public const string TextRecognition = nameof(TextRecognition); + public const string TextRotate270Degrees = nameof(TextRotate270Degrees); + public const string TextRotate90Degrees = nameof(TextRotate90Degrees); + public const string TextRotateHorizontal = nameof(TextRotateHorizontal); + public const string TextRotation = nameof(TextRotation); + public const string TFVCLogo = nameof(TFVCLogo); + public const string ThisPC = nameof(ThisPC); + public const string ThreeQuarterCircle = nameof(ThreeQuarterCircle); + public const string ThumbnailView = nameof(ThumbnailView); + public const string ThumbnailViewMirrored = nameof(ThumbnailViewMirrored); + public const string Thunderstorms = nameof(Thunderstorms); + public const string Ticket = nameof(Ticket); + public const string Tiles = nameof(Tiles); + public const string Tiles2 = nameof(Tiles2); + public const string TimeEntry = nameof(TimeEntry); + public const string TimeEntryTemplate = nameof(TimeEntryTemplate); + public const string Timeline = nameof(Timeline); + public const string TimelineDelivery = nameof(TimelineDelivery); + public const string TimelineMatrixView = nameof(TimelineMatrixView); + public const string TimelineProgress = nameof(TimelineProgress); + public const string TimePicker = nameof(TimePicker); + public const string Timer = nameof(Timer); + public const string TimeSheet = nameof(TimeSheet); + public const string Title = nameof(Title); + public const string TitleMirrored = nameof(TitleMirrored); + public const string ToDoLogoBottom = nameof(ToDoLogoBottom); + public const string ToDoLogoInverse = nameof(ToDoLogoInverse); + public const string ToDoLogoOutline = nameof(ToDoLogoOutline); + public const string ToDoLogoTop = nameof(ToDoLogoTop); + public const string ToggleBorder = nameof(ToggleBorder); + public const string ToggleFilled = nameof(ToggleFilled); + public const string ToggleLeft = nameof(ToggleLeft); + public const string ToggleRight = nameof(ToggleRight); + public const string ToggleThumb = nameof(ToggleThumb); + public const string Toll = nameof(Toll); + public const string Toolbox = nameof(Toolbox); + public const string Total = nameof(Total); + public const string Touch = nameof(Touch); + public const string TouchPointer = nameof(TouchPointer); + public const string Trackers = nameof(Trackers); + public const string TrackersMirrored = nameof(TrackersMirrored); + public const string Train = nameof(Train); + public const string TrainSolid = nameof(TrainSolid); + public const string TransferCall = nameof(TransferCall); + public const string Transition = nameof(Transition); + public const string TransitionEffect = nameof(TransitionEffect); + public const string TransitionPop = nameof(TransitionPop); + public const string TransitionPush = nameof(TransitionPush); + public const string Translate = nameof(Translate); + public const string Transportation = nameof(Transportation); + public const string Trending12 = nameof(Trending12); + public const string TriangleDown12 = nameof(TriangleDown12); + public const string TriangleLeft12 = nameof(TriangleLeft12); + public const string TriangleRight12 = nameof(TriangleRight12); + public const string TriangleShape = nameof(TriangleShape); + public const string TriangleShapeSolid = nameof(TriangleShapeSolid); + public const string TriangleSolid = nameof(TriangleSolid); + public const string TriangleSolidDown12 = nameof(TriangleSolidDown12); + public const string TriangleSolidLeft12 = nameof(TriangleSolidLeft12); + public const string TriangleSolidRight12 = nameof(TriangleSolidRight12); + public const string TriangleSolidUp12 = nameof(TriangleSolidUp12); + public const string TriangleUp12 = nameof(TriangleUp12); + public const string TriggerApproval = nameof(TriggerApproval); + public const string TriggerAuto = nameof(TriggerAuto); + public const string TriggerPhrase = nameof(TriggerPhrase); + public const string TriggerUser = nameof(TriggerUser); + public const string Trim = nameof(Trim); + public const string TrimEnd = nameof(TrimEnd); + public const string TrimStart = nameof(TrimStart); + public const string TripleColumn = nameof(TripleColumn); + public const string TripleColumnEdit = nameof(TripleColumnEdit); + public const string TripleColumnWide = nameof(TripleColumnWide); + public const string Trophy = nameof(Trophy); + public const string Trophy2 = nameof(Trophy2); + public const string Trophy2Solid = nameof(Trophy2Solid); + public const string TurnRight = nameof(TurnRight); + public const string TurnUserLeft = nameof(TurnUserLeft); + public const string TVMonitor = nameof(TVMonitor); + public const string TVMonitorSelected = nameof(TVMonitorSelected); + public const string TypeScriptLanguage = nameof(TypeScriptLanguage); + public const string Umbrella = nameof(Umbrella); + public const string UnavailableOffline = nameof(UnavailableOffline); + public const string Underline = nameof(Underline); + public const string UnderlineA = nameof(UnderlineA); + public const string UnderlineKorean = nameof(UnderlineKorean); + public const string UnderlineP = nameof(UnderlineP); + public const string UnderlineRussian = nameof(UnderlineRussian); + public const string UnderlineS = nameof(UnderlineS); + public const string UnderlineSerbian = nameof(UnderlineSerbian); + public const string Undo = nameof(Undo); + public const string Uneditable = nameof(Uneditable); + public const string Uneditable2 = nameof(Uneditable2); + public const string Uneditable2Mirrored = nameof(Uneditable2Mirrored); + public const string UneditableMirrored = nameof(UneditableMirrored); + public const string UneditableSolid12 = nameof(UneditableSolid12); + public const string UneditableSolidMirrored12 = nameof(UneditableSolidMirrored12); + public const string Unfavorite = nameof(Unfavorite); + public const string UngroupObject = nameof(UngroupObject); + public const string UniteShape = nameof(UniteShape); + public const string Unknown = nameof(Unknown); + public const string UnknownCall = nameof(UnknownCall); + public const string UnknownMirrored = nameof(UnknownMirrored); + public const string UnknownMirroredSolid = nameof(UnknownMirroredSolid); + public const string UnknownSolid = nameof(UnknownSolid); + public const string Unlock = nameof(Unlock); + public const string UnlockSolid = nameof(UnlockSolid); + public const string Unpin = nameof(Unpin); + public const string UnpublishContent = nameof(UnpublishContent); + public const string UnSetColor = nameof(UnSetColor); + public const string UnstackSelected = nameof(UnstackSelected); + public const string Unsubscribe = nameof(Unsubscribe); + public const string UnsyncFolder = nameof(UnsyncFolder); + public const string UnsyncOccurrence = nameof(UnsyncOccurrence); + public const string Untag = nameof(Untag); + public const string Up = nameof(Up); + public const string UpdateRestore = nameof(UpdateRestore); + public const string UpgradeAnalysis = nameof(UpgradeAnalysis); + public const string UpKey = nameof(UpKey); + public const string Upload = nameof(Upload); + public const string UpperCase = nameof(UpperCase); + public const string URLBlock = nameof(URLBlock); + public const string USB = nameof(USB); + public const string UserClapper = nameof(UserClapper); + public const string UserEvent = nameof(UserEvent); + public const string UserFollowed = nameof(UserFollowed); + public const string UserGauge = nameof(UserGauge); + public const string UserOptional = nameof(UserOptional); + public const string UserPause = nameof(UserPause); + public const string UserRemove = nameof(UserRemove); + public const string UserSync = nameof(UserSync); + public const string UserWarning = nameof(UserWarning); + public const string UserWindow = nameof(UserWindow); + public const string Vacation = nameof(Vacation); + public const string Vaccination = nameof(Vaccination); + public const string VaccinationRecent = nameof(VaccinationRecent); + public const string Variable = nameof(Variable); + public const string Variable2 = nameof(Variable2); + public const string Variable3 = nameof(Variable3); + public const string VariableGroup = nameof(VariableGroup); + public const string VB = nameof(VB); + public const string VennDiagram = nameof(VennDiagram); + public const string VerifiedBrand = nameof(VerifiedBrand); + public const string VerifiedBrandSolid = nameof(VerifiedBrandSolid); + public const string VersionControlPush = nameof(VersionControlPush); + public const string VerticalDistributeCenter = nameof(VerticalDistributeCenter); + public const string Video = nameof(Video); + public const string Video360Generic = nameof(Video360Generic); + public const string VideoAdd = nameof(VideoAdd); + public const string VideoLightOff = nameof(VideoLightOff); + public const string VideoOff = nameof(VideoOff); + public const string VideoOff2 = nameof(VideoOff2); + public const string VideoSearch = nameof(VideoSearch); + public const string VideoSolid = nameof(VideoSolid); + public const string View = nameof(View); + public const string ViewAll = nameof(ViewAll); + public const string ViewAll2 = nameof(ViewAll2); + public const string ViewDashboard = nameof(ViewDashboard); + public const string ViewInAR = nameof(ViewInAR); + public const string ViewList = nameof(ViewList); + public const string ViewListGroup = nameof(ViewListGroup); + public const string ViewListTree = nameof(ViewListTree); + public const string ViewOriginal = nameof(ViewOriginal); + public const string VirtualNetwork = nameof(VirtualNetwork); + public const string VisioDiagram = nameof(VisioDiagram); + public const string VisioDiagramSync = nameof(VisioDiagramSync); + public const string VisioDocument = nameof(VisioDocument); + public const string VisioLogo = nameof(VisioLogo); + public const string VisioLogo16 = nameof(VisioLogo16); + public const string VisioLogoInverse = nameof(VisioLogoInverse); + public const string VisioLogoInverse16 = nameof(VisioLogoInverse16); + public const string VisualBasicLanguage = nameof(VisualBasicLanguage); + public const string VisuallyImpaired = nameof(VisuallyImpaired); + public const string VisualsFolder = nameof(VisualsFolder); + public const string VisualsStore = nameof(VisualsStore); + public const string VisualStudioForWindows = nameof(VisualStudioForWindows); + public const string VisualStudioForWindowsAlt = nameof(VisualStudioForWindowsAlt); + public const string VivaTopicApp = nameof(VivaTopicApp); + public const string VoicemailForward = nameof(VoicemailForward); + public const string VoicemailIRM = nameof(VoicemailIRM); + public const string VoicemailReply = nameof(VoicemailReply); + public const string Volume0 = nameof(Volume0); + public const string Volume1 = nameof(Volume1); + public const string Volume2 = nameof(Volume2); + public const string Volume3 = nameof(Volume3); + public const string VolumeDisabled = nameof(VolumeDisabled); + public const string VSTSAltLogo1 = nameof(VSTSAltLogo1); + public const string VSTSAltLogo2 = nameof(VSTSAltLogo2); + public const string VSTSLogo = nameof(VSTSLogo); + public const string Waffle = nameof(Waffle); + public const string WaffleOffice365 = nameof(WaffleOffice365); + public const string WaitlistConfirm = nameof(WaitlistConfirm); + public const string WaitlistConfirmMirrored = nameof(WaitlistConfirmMirrored); + public const string Warning = nameof(Warning); + public const string Warning12 = nameof(Warning12); + public const string WarningSolid = nameof(WarningSolid); + public const string WavingHand = nameof(WavingHand); + public const string WebAppBuilderFragment = nameof(WebAppBuilderFragment); + public const string WebAppBuilderFragmentCreate = nameof(WebAppBuilderFragmentCreate); + public const string WebAppBuilderFragmentLock = nameof(WebAppBuilderFragmentLock); + public const string WebAppBuilderFragmentTest = nameof(WebAppBuilderFragmentTest); + public const string WebAppBuilderModule = nameof(WebAppBuilderModule); + public const string WebAppBuilderModuleLock = nameof(WebAppBuilderModuleLock); + public const string WebAppBuilderModuleTest = nameof(WebAppBuilderModuleTest); + public const string WebAppBuilderSlot = nameof(WebAppBuilderSlot); + public const string Webcam2 = nameof(Webcam2); + public const string Webcam2Off = nameof(Webcam2Off); + public const string WebComponents = nameof(WebComponents); + public const string WebEnvironment = nameof(WebEnvironment); + public const string WebPublish = nameof(WebPublish); + public const string WebSearch = nameof(WebSearch); + public const string Website = nameof(Website); + public const string WebTemplate = nameof(WebTemplate); + public const string Weights = nameof(Weights); + public const string Wheelchair = nameof(Wheelchair); + public const string Whiteboard = nameof(Whiteboard); + public const string WhiteBoardApp16 = nameof(WhiteBoardApp16); + public const string WhiteBoardApp32 = nameof(WhiteBoardApp32); + public const string WifiEthernet = nameof(WifiEthernet); + public const string WifiWarning4 = nameof(WifiWarning4); + public const string WindDirection = nameof(WindDirection); + public const string WindowEdit = nameof(WindowEdit); + public const string WindowsLogo = nameof(WindowsLogo); + public const string Wines = nameof(Wines); + public const string WipePhone = nameof(WipePhone); + public const string WordDocument = nameof(WordDocument); + public const string WordLogo = nameof(WordLogo); + public const string WordLogo16 = nameof(WordLogo16); + public const string WordLogoInverse = nameof(WordLogoInverse); + public const string WordLogoInverse16 = nameof(WordLogoInverse16); + public const string Work = nameof(Work); + public const string WorkFlow = nameof(WorkFlow); + public const string WorkforceManagement = nameof(WorkforceManagement); + public const string WorkItem = nameof(WorkItem); + public const string WorkItemAlert = nameof(WorkItemAlert); + public const string WorkItemBar = nameof(WorkItemBar); + public const string WorkItemBarSolid = nameof(WorkItemBarSolid); + public const string WorkItemBug = nameof(WorkItemBug); + public const string World = nameof(World); + public const string WorldClock = nameof(WorldClock); + public const string XPowerY = nameof(XPowerY); + public const string XRay = nameof(XRay); + public const string YammerLogo = nameof(YammerLogo); + public const string ZeroDayCalendar = nameof(ZeroDayCalendar); + public const string ZeroDayPatch = nameof(ZeroDayPatch); + public const string ZipFolder = nameof(ZipFolder); + public const string Zoom = nameof(Zoom); + public const string ZoomIn = nameof(ZoomIn); + public const string ZoomOut = nameof(ZoomOut); + public const string ZoomToFit = nameof(ZoomToFit); + public const string ZoomToFitAlt = nameof(ZoomToFitAlt); } diff --git a/src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj b/src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj index a60b493591..21a105c56a 100644 --- a/src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj +++ b/src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj @@ -9,8 +9,8 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/BlazorUI/Bit.BlazorUI.Tests/DatePicker/BitDatePickerTests.cs b/src/BlazorUI/Bit.BlazorUI.Tests/DatePicker/BitDatePickerTests.cs index f12bb545ab..bf67edbaab 100644 --- a/src/BlazorUI/Bit.BlazorUI.Tests/DatePicker/BitDatePickerTests.cs +++ b/src/BlazorUI/Bit.BlazorUI.Tests/DatePicker/BitDatePickerTests.cs @@ -83,14 +83,14 @@ public void BitDatePickerShouldHandleOnClickEvent(bool isEnabled, int count) ] public void BitDatePickerCalendarItemsShouldRespectIsEnabled(bool isEnabled, int count) { - var selectedDateValue = 0; + var changedDateValue = 0; var isOpen = true; Context.JSInterop.Mode = JSRuntimeMode.Loose; var component = RenderComponent(parameters => { parameters.Bind(p => p.IsOpen, isOpen, v => isOpen = v); parameters.Add(p => p.IsEnabled, isEnabled); - parameters.Add(p => p.OnSelectDate, () => selectedDateValue++); + parameters.Add(p => p.OnChange, () => changedDateValue++); }); var dateItems = component.FindAll(".bit-dtp-dbt"); @@ -98,7 +98,7 @@ public void BitDatePickerCalendarItemsShouldRespectIsEnabled(bool isEnabled, int Random random = new(); int randomNumber = random.Next(0, dateItems.Count - 1); dateItems[randomNumber].Click(); - Assert.AreEqual(count, selectedDateValue); + Assert.AreEqual(count, changedDateValue); } [DataTestMethod] diff --git a/src/BlazorUI/Bit.BlazorUI.Tests/DateRangePicker/BitDateRangePickerTests.cs b/src/BlazorUI/Bit.BlazorUI.Tests/DateRangePicker/BitDateRangePickerTests.cs index df3cc5dd45..6dac68e5e5 100644 --- a/src/BlazorUI/Bit.BlazorUI.Tests/DateRangePicker/BitDateRangePickerTests.cs +++ b/src/BlazorUI/Bit.BlazorUI.Tests/DateRangePicker/BitDateRangePickerTests.cs @@ -84,13 +84,13 @@ public void BitDateRangePickerShouldHandleOnClickEvent(bool isEnabled, int count public void BitDateRangePickerCalendarItemsShouldRespectIsEnabled(bool isEnabled) { var isOpen = true; - var selectedDateValue = 0; + var changeValue = 0; Context.JSInterop.Mode = JSRuntimeMode.Loose; var component = RenderComponent(parameters => { parameters.Bind(p => p.IsOpen, isOpen, v => isOpen = v); parameters.Add(p => p.IsEnabled, isEnabled); - parameters.Add(p => p.OnSelectDate, () => selectedDateValue++); + parameters.Add(p => p.OnChange, () => changeValue++); }); var dateItems = component.FindAll(".bit-dtrp-dbt"); @@ -98,7 +98,7 @@ public void BitDateRangePickerCalendarItemsShouldRespectIsEnabled(bool isEnabled Random random = new(); int randomNumber = random.Next(0, dateItems.Count - 1); dateItems[randomNumber].Click(); - Assert.AreEqual(isEnabled ? 1 : 0, selectedDateValue); + Assert.AreEqual(isEnabled ? 1 : 0, changeValue); } [DataTestMethod] diff --git a/src/BlazorUI/Bit.BlazorUI.Tests/Dropdown/BitDropdownTests.cs b/src/BlazorUI/Bit.BlazorUI.Tests/Dropdown/BitDropdownTests.cs index 139184d6f8..209dd0dc9a 100644 --- a/src/BlazorUI/Bit.BlazorUI.Tests/Dropdown/BitDropdownTests.cs +++ b/src/BlazorUI/Bit.BlazorUI.Tests/Dropdown/BitDropdownTests.cs @@ -229,7 +229,7 @@ public void BitDropdownTextWithDefaultValuesShouldInitCorrect(string defaultValu { Context.JSInterop.Mode = JSRuntimeMode.Loose; - var items = BitDropdownTests.GetDropdownItems(); + var items = GetDropdownItems(); var defaultSelectedMultipleValueList = defaultValues.Split(",").ToArray(); var component = RenderComponent, string>>(parameters => { @@ -239,20 +239,17 @@ public void BitDropdownTextWithDefaultValuesShouldInitCorrect(string defaultValu }); var textSpan = component.Find(".bit-drp-tcn"); - var defaultSelectedItems = items.FindAll(i => defaultSelectedMultipleValueList.Contains(i.Value) && i.ItemType == BitDropdownItemType.Normal); + var defaultSelectedItems = component.Instance.SelectedItems.ToList(); var expectedText = ""; defaultSelectedItems.ForEach(i => { - if (i.IsSelected && i.ItemType == BitDropdownItemType.Normal) + if (expectedText.HasValue()) { - if (expectedText.HasValue()) - { - expectedText += component.Instance.MultiSelectDelimiter; - } - - expectedText += i.Text; + expectedText += component.Instance.MultiSelectDelimiter; } + + expectedText += i.Text; }); Assert.AreEqual(expectedText, textSpan.InnerHtml); @@ -266,7 +263,7 @@ public void BitDropdownTextWithValueShouldInitCorrect(string value, string defau { Context.JSInterop.Mode = JSRuntimeMode.Loose; - var items = BitDropdownTests.GetDropdownItems(); + var items = GetDropdownItems(); var component = RenderComponent, string>>(parameters => { parameters.Add(p => p.Items, items); @@ -286,7 +283,7 @@ public void BitDropdownTextWithValueShouldInitCorrect(string value, string defau ] public void BitDropdownTextWithValuesAndDefaultValuesShouldInitCorrect(string defaultValues, string values) { - var items = BitDropdownTests.GetDropdownItems(); + var items = GetDropdownItems(); var defaultSelectedMultipleValueList = defaultValues.Split(",").ToArray(); var selectedMultipleValueList = values.Split(",").ToArray(); var component = RenderComponent, string>>(parameters => @@ -298,20 +295,17 @@ public void BitDropdownTextWithValuesAndDefaultValuesShouldInitCorrect(string de }); var textSpan = component.Find(".bit-drp-tcn"); - var selectedItems = items.FindAll(i => selectedMultipleValueList.Contains(i.Value) && i.ItemType == BitDropdownItemType.Normal); + var selectedItems = component.Instance.SelectedItems.ToList(); var expectedText = new StringBuilder(); selectedItems.ForEach(i => { - if (i.IsSelected && i.ItemType == BitDropdownItemType.Normal) + if (expectedText.Length > 0) { - if (expectedText.Length > 0) - { - expectedText.Append(component.Instance.MultiSelectDelimiter); - } - - expectedText.Append(i.Text); + expectedText.Append(component.Instance.MultiSelectDelimiter); } + + expectedText.Append(i.Text); }); Assert.AreEqual(expectedText.ToString(), textSpan.InnerHtml); @@ -575,77 +569,6 @@ public void BitDropdownMultiSelectTwoWayBoundWithCustomHandlerShouldWorkCorrect( Assert.AreEqual(expectedResult, _bitDropdownValues.Count()); } - [DataTestMethod, - DataRow("Apple", "f-app"), - DataRow("Orange", "f-ora"), - DataRow("Banana", "f-ban"), - DataRow("Broccoli", "v-bro") - ] - public void BitDropdownTwoWayBoundWithForSelectedItem(string text, string value) - { - Context.JSInterop.Mode = JSRuntimeMode.Loose; - BitDropdownItem? selectedItem = null; - var isOpen = true; - - var items = BitDropdownTests.GetShortDropdownItems(); - var component = RenderComponent, string>>(parameters => - { - parameters.Add(p => p.IsOpen, isOpen); - parameters.Add(p => p.IsOpenChanged, v => isOpen = v); - parameters.Add(p => p.IsEnabled, true); - parameters.Add(p => p.Items, items); - parameters.Add(p => p.SelectedItem, selectedItem); - parameters.Add(p => p.SelectedItemChanged, (value) => selectedItem = value); - }); - - var drpItems = component.FindAll(".bit-drp-itm"); - drpItems.Single(i => i.TextContent.Contains(text)).Click(); - - Assert.IsNotNull(selectedItem); - Assert.AreEqual(value, selectedItem.Value); - Assert.AreEqual(text, selectedItem.Text); - Assert.IsTrue(selectedItem.IsSelected); - } - - [DataTestMethod, - DataRow("Banana,Broccoli", "f-ban,v-bro"), - DataRow("Orange", "f-ora"), - DataRow("Orange,Apple,Banana", "f-ora,f-app,f-ban") - ] - public void BitDropdownMultiSelectTwoWayBoundForSelectedItems(string text, string value) - { - Context.JSInterop.Mode = JSRuntimeMode.Loose; - List> selectedItems = null; - var isOpen = true; - - var items = BitDropdownTests.GetShortDropdownItems(); - var component = RenderComponent, string>>(parameters => - { - parameters.Add(p => p.IsOpen, isOpen); - parameters.Add(p => p.IsOpenChanged, v => isOpen = v); - parameters.Add(p => p.IsEnabled, true); - parameters.Add(p => p.IsMultiSelect, true); - parameters.Add(p => p.Items, items); - parameters.Add(p => p.SelectedItems, selectedItems); - parameters.Add(p => p.SelectedItemsChanged, v => selectedItems = v); - }); - - var textList = text.Split(","); - var drpItems = component.FindAll(".bit-drp-iwr", enableAutoRefresh: true); - foreach (var txt in textList) - { - drpItems.Single(i => i.Children[0].Children[1].TextContent.Contains(txt)).Children[0].Click(); - } - - var valueList = value.Split(",").ToArray(); - - Assert.IsNotNull(selectedItems); - Assert.AreEqual(valueList.Length, selectedItems.Count); - Assert.IsTrue(selectedItems.Select(i => i.Value).OrderBy(o => o).SequenceEqual(valueList.OrderBy(o => o))); - Assert.IsTrue(selectedItems.Select(i => i.Text).OrderBy(o => o).SequenceEqual(textList.OrderBy(o => o))); - Assert.IsFalse(selectedItems.Any(i => i.IsSelected is false)); - } - [DataTestMethod, DataRow(null), DataRow("f-ora") diff --git a/src/BlazorUI/Bit.BlazorUI.Tests/NumericTextField/Int/BitNumericTextFieldIntTests.cs b/src/BlazorUI/Bit.BlazorUI.Tests/NumericTextField/Int/BitNumericTextFieldIntTests.cs index 62a37f10dc..e82c4bef54 100644 --- a/src/BlazorUI/Bit.BlazorUI.Tests/NumericTextField/Int/BitNumericTextFieldIntTests.cs +++ b/src/BlazorUI/Bit.BlazorUI.Tests/NumericTextField/Int/BitNumericTextFieldIntTests.cs @@ -185,18 +185,24 @@ public void BitNumericTextFieldShouldRenderCorrectDecrementButton(string iconNam } [DataTestMethod, - DataRow(" cm"), - DataRow(" Inch"), - DataRow(" foot") + DataRow("{0} cm", 0), + DataRow("{0} Inch", 24), + DataRow("{0} foot", 100), + DataRow("{0:0} foot", 1000) ] - public void BitNumericTextFieldShouldHaveSuffixWhenItsPropertySet(string suffix) + public void BitNumericTextFieldShouldHaveNumberFormaWhenItsPropertySet(string numberFormat, int defaultValue) { - var component = RenderComponent>(parameters => parameters.Add(p => p.Suffix, suffix)); + var component = RenderComponent>(parameters => + { + parameters.Add(p => p.DefaultValue, defaultValue); + parameters.Add(p => p.NumberFormat, numberFormat); + }); var input = component.Find("input"); var inputValue = input.GetAttribute("value"); + var expectedValue = string.Format(numberFormat, defaultValue); - Assert.IsTrue(inputValue.Contains(suffix)); + Assert.AreEqual(expectedValue, inputValue); } [DataTestMethod, @@ -426,19 +432,22 @@ public void BitNumericTextFieldShouldHaveCorrectAriaDescription(string ariaDescr [DataTestMethod, DataRow(3, null), - DataRow(3, " cm"), + DataRow(3, "{0} cm"), DataRow(null, null) ] - public void BitNumericTextFieldInputShouldHaveCorrectAriaValueNow(int? ariaValueNow, string suffix) + public void BitNumericTextFieldInputShouldHaveCorrectAriaValueNow(int? ariaValueNow, string numberFormat) { var component = RenderComponent>(parameters => { parameters.Add(p => p.AriaValueNow, ariaValueNow); - parameters.Add(p => p.Suffix, suffix); + if (numberFormat.HasValue()) + { + parameters.Add(p => p.NumberFormat, numberFormat); + } }); var input = component.Find("input"); - var expectedResult = ariaValueNow.HasValue ? ariaValueNow : suffix.HasNoValue() ? component.Instance.Value : null; + var expectedResult = ariaValueNow.HasValue ? ariaValueNow : numberFormat.HasNoValue() ? component.Instance.Value : null; var attributeValue = input.GetAttribute("aria-valuenow"); if (expectedResult.HasValue is false) @@ -453,20 +462,23 @@ public void BitNumericTextFieldInputShouldHaveCorrectAriaValueNow(int? ariaValue [DataTestMethod, DataRow("3", null, 0), - DataRow(null, " cm", 0), + DataRow(null, "{0} cm", 0), DataRow(null, null, 0) ] - public void BitNumericTextFieldInputShouldHaveCorrectAriaValueText(string ariaValueText, string suffix, int precision) + public void BitNumericTextFieldInputShouldHaveCorrectAriaValueText(string ariaValueText, string numberFormat, int precision) { - var component = RenderComponent>(parameters => + var component = RenderComponent>(parameters => { parameters.Add(p => p.AriaValueText, ariaValueText); - parameters.Add(p => p.Suffix, suffix); parameters.Add(p => p.Precision, precision); + if (numberFormat.HasValue()) + { + parameters.Add(p => p.NumberFormat, numberFormat); + } }); var input = component.Find("input"); - var expectedResult = ariaValueText.HasValue() ? ariaValueText : suffix.HasValue() ? $"{Normalize(component.Instance.Value, precision)}{suffix}" : null; + var expectedResult = ariaValueText.HasValue() ? ariaValueText : numberFormat.HasValue() ? string.Format(numberFormat, Normalize(component.Instance.Value, precision)) : component.Instance.Value.ToString(); Assert.AreEqual(expectedResult, input.GetAttribute("aria-valuetext")); } @@ -585,14 +597,15 @@ public void BitNumericTextFieldArrowDownKeyDownTest(int defaultValue, int step, } [DataTestMethod, - DataRow(5, 0, 100, "25"), - DataRow(5, 0, 100, "112"), - DataRow(5, 0, 100, "-5"), - DataRow(5, 0, 100, "text123") + DataRow(50.02, 0, 100, "25"), + DataRow(50.02, 0, 100, "112.2"), + DataRow(50.02, 0, 100, "62.72"), + DataRow(50.02, 0, 100, "-5"), + DataRow(50.02, 0, 100, "text123") ] - public void BitNumericTextFieldEnterKeyDownTest(int defaultValue, int min, int max, string userInput) + public void BitNumericTextFieldEnterKeyDownTest(double defaultValue, int min, int max, string userInput) { - var component = RenderComponent>(parameters => + var component = RenderComponent>(parameters => { parameters.Add(p => p.DefaultValue, defaultValue); parameters.Add(p => p.Max, max); @@ -611,17 +624,17 @@ public void BitNumericTextFieldEnterKeyDownTest(int defaultValue, int min, int m }; input.KeyDown(keyboardArgs); var inputValue = component.Instance.Value; - int? expectedResult = 0; - var isNumber = int.TryParse(userInput, out var numericValue); + double? expectedResult = 0; + var isNumber = double.TryParse(userInput, out var numericValue); if (isNumber) { - expectedResult = Normalize(numericValue, 1); + expectedResult = Normalize(numericValue, 0); if (expectedResult > max) expectedResult = max; if (expectedResult < min) expectedResult = min; } else { - expectedResult = defaultValue; + expectedResult = Normalize(defaultValue, 0); } Assert.AreEqual(expectedResult, inputValue); @@ -633,9 +646,9 @@ public void BitNumericTextFieldEnterKeyDownTest(int defaultValue, int min, int m DataRow(5, 0, 100, "-5"), DataRow(5, 0, 100, "text123") ] - public void BitNumericTextFieldOnBlurTest(int defaultValue, int min, int max, string userInput) + public void BitNumericTextFieldOnBlurTest(double defaultValue, int min, int max, string userInput) { - var component = RenderComponent>(parameters => + var component = RenderComponent>(parameters => { parameters.Add(p => p.DefaultValue, defaultValue); parameters.Add(p => p.Max, max); @@ -650,8 +663,8 @@ public void BitNumericTextFieldOnBlurTest(int defaultValue, int min, int max, st input.Change(changeArgs); input.Blur(); var inputValue = component.Instance.Value; - int? expectedResult = 0; - var isNumber = int.TryParse(userInput, out var numericValue); + double? expectedResult = 0; + var isNumber = double.TryParse(userInput, out var numericValue); if (isNumber) { expectedResult = Normalize(numericValue, 1); @@ -914,8 +927,8 @@ public void BitNumericTextFieldValidationInvalidCssClassTest(int value) Assert.AreEqual(!isInvalid, NumericTextField.ClassList.Contains("bit-inv")); } - private int? Normalize(int? value, int precision) => - value.HasValue ? (int?)Math.Round((double)value.Value, precision) : null; + private double? Normalize(double? value, int precision) => + value.HasValue ? (double?)Math.Round(value.Value, precision) : null; private int CalculatePrecision(int value) { diff --git a/src/BlazorUI/Bit.BlazorUI/Components/Carousel/BitCarousel.razor.cs b/src/BlazorUI/Bit.BlazorUI/Components/Carousel/BitCarousel.razor.cs index 8e21e5ee64..d98d20635b 100644 --- a/src/BlazorUI/Bit.BlazorUI/Components/Carousel/BitCarousel.razor.cs +++ b/src/BlazorUI/Bit.BlazorUI/Components/Carousel/BitCarousel.razor.cs @@ -162,8 +162,8 @@ private async Task ResetDimensionsAsync() for (int i = 0; i < itemsCount; i++) { var item = AllItems[i]; - item.InternalStyle = $"width:{NumUtils.ToInvariantString(rect.Width / VisibleItemsCount)}px;display:block"; - item.InternalTransformStyle = $"transform:translateX({sign * 100 * i}%)"; + item.InternalStyle = FormattableString.Invariant($"width:{(rect.Width / VisibleItemsCount)}px;display:block"); + item.InternalTransformStyle = FormattableString.Invariant($"transform:translateX({sign * 100 * i}%)"); } _pagesCount = (int)Math.Ceiling((decimal)itemsCount / VisibleItemsCount); @@ -241,7 +241,7 @@ private async Task Go(bool isNext = false, int scrollCount = 0) o.InternalTransitionStyle = ""; var x = sign * 100 * (offset + (sign * i)); x = Direction == BitDirection.LeftToRight ? x : -x; - o.InternalTransformStyle = $"transform:translateX({x}%)"; + o.InternalTransformStyle = FormattableString.Invariant($"transform:translateX({x}%)"); } StateHasChanged(); @@ -253,19 +253,19 @@ private async Task Go(bool isNext = false, int scrollCount = 0) for (int i = 0; i < currents.Length; i++) { var c = currents[i]; - c.InternalTransitionStyle = $"transition:all {NumUtils.ToInvariantString(AnimationDuration)}s"; + c.InternalTransitionStyle = FormattableString.Invariant($"transition:all {AnimationDuration}s"); var x = -sign * 100 * (scrollCount + (-sign * i)); x = Direction == BitDirection.LeftToRight ? x : -x; - c.InternalTransformStyle = $"transform:translateX({x}%)"; + c.InternalTransformStyle = FormattableString.Invariant($"transform:translateX({x}%)"); } for (int i = 0; i < others.Length; i++) { var o = others[i]; - o.InternalTransitionStyle = $"transition:all {NumUtils.ToInvariantString(AnimationDuration)}s"; + o.InternalTransitionStyle = FormattableString.Invariant($"transition:all {AnimationDuration}s"); var x = 100 * (offset + i); x = Direction == BitDirection.LeftToRight ? x : -x; - o.InternalTransformStyle = $"transform:translateX({x}%)"; + o.InternalTransformStyle = FormattableString.Invariant($"transform:translateX({x}%)"); } _currentIndices = newIndices; diff --git a/src/BlazorUI/Bit.BlazorUI/Components/ColorPicker/BitColorPicker.razor.cs b/src/BlazorUI/Bit.BlazorUI/Components/ColorPicker/BitColorPicker.razor.cs index 083c637078..8229509129 100644 --- a/src/BlazorUI/Bit.BlazorUI/Components/ColorPicker/BitColorPicker.razor.cs +++ b/src/BlazorUI/Bit.BlazorUI/Components/ColorPicker/BitColorPicker.razor.cs @@ -94,8 +94,8 @@ public string Color public string? Hex => _color.Hex; - public string? Rgb => $"rgb({_color.R},{_color.G},{_color.B})"; - public string? Rgba => $"rgba({_color.R},{_color.G},{_color.B},{_color.A})"; + public string? Rgb => FormattableString.Invariant($"rgb({_color.R},{_color.G},{_color.B})"); + public string? Rgba => FormattableString.Invariant($"rgba({_color.R},{_color.G},{_color.B},{_color.A})"); public (double Hue, double Saturation, double Value) Hsv => _color.Hsv; diff --git a/src/BlazorUI/Bit.BlazorUI/Components/ColorPicker/BitInternalColor.cs b/src/BlazorUI/Bit.BlazorUI/Components/ColorPicker/BitInternalColor.cs index f146cdd42f..a2ce55f99f 100644 --- a/src/BlazorUI/Bit.BlazorUI/Components/ColorPicker/BitInternalColor.cs +++ b/src/BlazorUI/Bit.BlazorUI/Components/ColorPicker/BitInternalColor.cs @@ -191,8 +191,8 @@ private void CalculateHsv() private void GenerateStringValues() { - _hex = $"#{R:X2}{G:X2}{B:X2}"; - _rgb = $"rgb({R},{G},{B})"; - _rgba = $"rgba({R},{G},{B},{A})"; + _hex = FormattableString.Invariant($"#{R:X2}{G:X2}{B:X2}"); + _rgb = FormattableString.Invariant($"rgb({R},{G},{B})"); + _rgba = FormattableString.Invariant($"rgba({R},{G},{B},{A})"); } } diff --git a/src/BlazorUI/Bit.BlazorUI/Components/Dialog/BitDialog.razor.cs b/src/BlazorUI/Bit.BlazorUI/Components/Dialog/BitDialog.razor.cs index d636cd4a96..ea1811f6bf 100644 --- a/src/BlazorUI/Bit.BlazorUI/Components/Dialog/BitDialog.razor.cs +++ b/src/BlazorUI/Bit.BlazorUI/Components/Dialog/BitDialog.razor.cs @@ -215,7 +215,7 @@ protected override void RegisterCssStyles() { StyleBuilder.Register(() => Styles?.Root); - StyleBuilder.Register(() => _offsetTop > 0 ? $"top:{_offsetTop}px" : string.Empty); + StyleBuilder.Register(() => _offsetTop > 0 ? FormattableString.Invariant($"top:{_offsetTop}px") : string.Empty); } protected override Task OnInitializedAsync() diff --git a/src/BlazorUI/Bit.BlazorUI/Components/Inputs/Calendar/BitCalendar.razor.cs b/src/BlazorUI/Bit.BlazorUI/Components/Inputs/Calendar/BitCalendar.razor.cs index c2d3c3ce84..5ed6bb6d59 100644 --- a/src/BlazorUI/Bit.BlazorUI/Components/Inputs/Calendar/BitCalendar.razor.cs +++ b/src/BlazorUI/Bit.BlazorUI/Components/Inputs/Calendar/BitCalendar.razor.cs @@ -391,12 +391,14 @@ private void SelectDate(int dayIndex, int weekIndex) var selectedMonth = FindMonth(weekIndex, dayIndex); var isNotInCurrentMonth = IsInCurrentMonth(weekIndex, dayIndex) is false; - if (selectedMonth < _currentMonth && _currentMonth == 12 && isNotInCurrentMonth) + //The number of days displayed in the picker is about 34 days, and if the selected day is less than 15, it means that the next month has been selected in next year. + if (selectedMonth < _currentMonth && _currentMonth == 12 && isNotInCurrentMonth && _currentDay < 15) { _currentYear++; } - if (selectedMonth > _currentMonth && _currentMonth == 1 && isNotInCurrentMonth) + //The number of days displayed in the picker is about 34 days, and if the selected day is greater than 15, it means that the previous month has been selected in previous year. + if (selectedMonth > _currentMonth && _currentMonth == 1 && isNotInCurrentMonth && _currentDay > 15) { _currentYear--; } diff --git a/src/BlazorUI/Bit.BlazorUI/Components/Inputs/ChoiceGroup/BitChoiceGroup.razor b/src/BlazorUI/Bit.BlazorUI/Components/Inputs/ChoiceGroup/BitChoiceGroup.razor index a4c80ec122..5f5ee3a6c4 100644 --- a/src/BlazorUI/Bit.BlazorUI/Components/Inputs/ChoiceGroup/BitChoiceGroup.razor +++ b/src/BlazorUI/Bit.BlazorUI/Components/Inputs/ChoiceGroup/BitChoiceGroup.razor @@ -76,7 +76,7 @@ {
-
@GetImageAlt(item)
- + + @if (IsEnabled && ShowClearButton && CurrentValue.HasValue) + { +