So I'm very confused here. I want to make my multilined CheckedListBox
to be sorted horizontally. I've done some research and it is all leading to the RepeatDirection
property. Example in the MSDN: https://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeatdirection%28v=vs.110%29.aspx
But I don't have a web page and I don't know any XML. Can't I just somehow use this property for the CheckedListBox
Control? The MSDN people say it is already a property of that Control as they simply have written:
public virtual RepeatDirection RepeatDirection { get; set; }
I just can't seem to understand how to implement this in my code!
Thanks in advance.