Skip to main content

IUriProviderService.CreateCssUri(String, String, String) Method

Creates URI for CSS data.

Namespace: DevExpress.Office.Services

Assembly: DevExpress.Office.v23.2.Core.dll

NuGet Packages: DevExpress.Office.Core, DevExpress.Win.Navigation

Declaration

string CreateCssUri(
    string url,
    string styleText,
    string relativeUri
)

Parameters

Name Type Description
url String

A string that specifies the root URI.

styleText String

A string containing CSS definitions for which the URI is created.

relativeUri String

A string that specifies the relative part of the URI (path relative to the root).

Returns

Type Description
String

A string that is the URI of CSS data.

Remarks

The CreateCssUri method polls all registered URI providers by calling their IUriProvider.CreateCssUri methods and returns the first result which is not null.

See Also