ASPxHtmlEditor.ReplacePlaceholders(String, String, String, Dictionary<String, String>) Method
In This Article
Replaces placeholders with the specified values.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public static string ReplacePlaceholders(
string html,
string startMark,
string endMark,
Dictionary<string, string> placeholders
)
#Parameters
Name | Type | Description |
---|---|---|
html | String | A string value that specifies the HTML code to process. |
start |
String | A string value that specifies the starting character |
end |
String | A string value that specifies the character |
placeholders | Dictionary<String, String> | The collection of placeholders and values to replace them. |
#Returns
Type | Description |
---|---|
String | A string value that is the resulting HTML code with the placeholders replaced. |
See Also