EAPCtrlUtilsMergeCssClass Method (String, String) |
Merges two CSS class lists into a single list avoiding adding duplicates to any existing list.
The individual classes in each list should be separated by one or more spaces.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string MergeCssClass(
string existingClasses,
string newClasses
)
Public Shared Function MergeCssClass (
existingClasses As String,
newClasses As String
) As String
Parameters
- existingClasses
- Type: SystemString
The class(es) into which to merge, may be null/empty. - newClasses
- Type: SystemString
The class(es) to merge in, may be null/empty.
Return Value
Type:
StringThe merged class list.
See Also