How to prevent displaying True/False in column when using Image?

163 Views Asked by At

I would like to have an image in column for boolean type. To specify column properties, I use OLVColumn attribute and there I specify ImageAspectName.

[OLVColumn("UseK", DisplayIndex = 4, ImageAspectName = "ImageForUseK", CheckBoxes = false, Width = 40)]
public bool UseK
{
    get { return useK; }
    set
    {
        if (useK == value) return;
        useK = value;
        OnPropertyChanged("UseK");
    }
}
protected bool useK = true;

public string ImageForUseK()
{
    return "success";
}

This works fine and displaying image in column, but also displaying literal "True" next to image.

enter image description here

How can I avoid displaying string value of boolean property, while still using ImageAspectName?

1

There are 1 best solutions below

0
On

You could set AspectToStringFormat to a space.