PropertyGrid.PropertyEditorCell.GetValueText C# (CSharp) 메소드

GetValueText() 보호된 메소드

protected GetValueText ( ) : string
리턴 string
        protected virtual string GetValueText()
        {
            if (obj == null) return "";
            object val = property.GetValue (obj);
            if (val == null) return "";
            else return property.Converter.ConvertToString (val);
        }