AspNetEdit.UI.PropertyEditors.BaseEditor.StringValue C# (CSharp) Method

StringValue() protected method

A Gtk.Label suitable for returning by GetDisplayWidget (). Handles nulls.
protected StringValue ( object value ) : Gtk.Widget
value object The new property value Label.
return Gtk.Widget
        protected Widget StringValue(object value)
        {
            if (value == null)
                return StringValue (null, false);
            else
                return StringValue (value.ToString(), false);
        }

Same methods

BaseEditor::StringValue ( string value, bool markup ) : Gtk.Widget