Back to Devexpress

ThemeProperties.Name Property

blazor-devexpress-dot-blazor-dot-themeproperties.md

latest3.5 KB
Original Source

ThemeProperties.Name Property

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

Declaration

csharp
public string Name { get; set; }

Property Value

TypeDescription
String

The theme name.

|

Remarks

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

csharp
public static void AddBootstrapExternalTheme(string themeName, ThemeProperties properties) {
    properties.Name = themeName;
    AddBootstrapTheme(properties);

blazor-grid-customize-group-summaries/CS/GroupSummaries/Services/DxThemes.cs#L23

csharp
public static void AddBootstrapExternalTheme(string themeName, ThemeProperties properties) {
    properties.Name = themeName;
    AddBootstrapTheme(properties);

blazor-use-devextreme-diagram/CS/DiagramBlazorApp/Services/DxThemes.cs#L23

csharp
public static void AddBootstrapExternalTheme(string themeName, ThemeProperties properties) {
    properties.Name = themeName;
    AddBootstrapTheme(properties);

blazor-grid-disable-selection-checkboxes-by-condition/CS/GridDisabledCheckboxes/Services/DxThemes.cs#L23

csharp
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

csharp
{
    properties.Name = themeName;
    AddBootstrapTheme(properties);

See Also

ThemeProperties Class

ThemeProperties Members

DevExpress.Blazor Namespace