blazor-devexpress-dot-blazor-dot-themeproperties.md
Specifies the theme name. Serves as a unique theme identifier.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.Resources.v25.2.dll
NuGet Package : DevExpress.Blazor.Resources
public string Name { get; set; }
| Type | Description |
|---|---|
| String |
The theme name.
|
Refer to the ThemeProperties or ThemeFluentProperties class description for additional information and an example.
The following code snippets (auto-collected from DevExpress Examples) contain references to the Name property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
blazor-editable-grid-with-expandoobject/CS/Expando/Services/DxThemes.cs#L23
public static void AddBootstrapExternalTheme(string themeName, ThemeProperties properties) {
properties.Name = themeName;
AddBootstrapTheme(properties);
blazor-grid-customize-group-summaries/CS/GroupSummaries/Services/DxThemes.cs#L23
public static void AddBootstrapExternalTheme(string themeName, ThemeProperties properties) {
properties.Name = themeName;
AddBootstrapTheme(properties);
blazor-use-devextreme-diagram/CS/DiagramBlazorApp/Services/DxThemes.cs#L23
public static void AddBootstrapExternalTheme(string themeName, ThemeProperties properties) {
properties.Name = themeName;
AddBootstrapTheme(properties);
public static void AddBootstrapExternalTheme(string themeName, ThemeProperties properties) {
properties.Name = themeName;
AddBootstrapTheme(properties);
blazor-richedit-place-control-in-edit-form/CS/Services/DxThemes.cs#L27
{
properties.Name = themeName;
AddBootstrapTheme(properties);
See Also