• value (value) : String
    Gets or sets the Editor value.

    Example

    var editor = $("#editor").data("kendoEditor");
    
    // set value
    editor.value(htmlString);
    
    // get value
    var htmlValue = editor.value();

    Parameters

    value: String
    The value to set.
    Returns
    String The value of the Editor as HTML string.