Пример #1
0
 /// <summary>
 /// Prepend content returned from the specified function to the beginning of each element
 /// of the matching elements.
 /// </summary>
 /// <param name="contentFunction">The function that returns the content to prepend.</param>
 /// <returns>The current jElement</returns>
 public jElement prepend(StringReplaceFunctionWithContext contentFunction) {
     return null;
 }
Пример #2
0
 /// <summary>
 /// Sets the HTML content of the matched set of elements by calling the specified
 /// function.
 /// </summary>
 /// <param name="htmlFunction">The function that returns the HTML content.</param>
 /// <returns>The current jElement.</returns>
 public jElement html(StringReplaceFunctionWithContext htmlFunction) {
     return null;
 }
Пример #3
0
 /// <summary>
 /// Sets the specified CSS attribute value to the values returned by the
 /// specified function on the set of matched elements.
 /// </summary>
 /// <param name="attributeName">The name of the CSS attribute to set.</param>
 /// <param name="valueFunction">The function returning attribute values.</param>
 /// <returns>The current jElement.</returns>
 public jElement css(string attributeName, StringReplaceFunctionWithContext valueFunction) {
     return null;
 }
Пример #4
0
 /// <summary>
 /// Adds the CSS class returned by the specified function.
 /// </summary>
 /// <param name="cssFunction">The function that returns the CSS class to add.</param>
 /// <returns>The current jElement.</returns>
 public jElement addClass(StringReplaceFunctionWithContext cssFunction) {
     return null;
 }
Пример #5
0
 /// <summary>
 /// Sets the value attribute of the matched set of elements using values returned
 /// from the specified function.
 /// </summary>
 /// <param name="valueFunction">The function returning the values to set.</param>
 /// <returns>The current jElement.</returns>        
 public jElement val(StringReplaceFunctionWithContext valueFunction) {
     return null;
 }
Пример #6
0
 /// <summary>
 /// Sets the text content of the matched set of elements by calling the specified
 /// function.
 /// </summary>
 /// <param name="textFunction">The function that returns the text content.</param>
 /// <returns>The current jElement.</returns>
 public jElement text(StringReplaceFunctionWithContext textFunction) {
     return null;
 }