Forum Discussion
ak
12 years agoOccasional Contributor
Hi Tanya,
Big thank for the help. It works fine. I did not know that I have to get into the ViewInfo to be able to get access to the cell. Thank you again.
I do have another question related to this. I don't understand why when I create a form which use the private DevExpress.XtraTreeList.TreeList directly. Example
private DevExpress.XtraTreeList.TreeList aTree;
I saw a method ClickCell in Object Inpsector. But when I create a class which inherite from a class using XTraTreeList. Then, i don't see the method ClickCell.
Here an example that the method ClickCell is not available:
class MyTreeList : DevExpress.XtraTreeList.TreeList
{
public MyTreeList()
{
}
}
partial class Form
{
private void InitializeComponent()
{
this.treeList = new MyTreeList();
.
.
.
}
}
Big thank for the help. It works fine. I did not know that I have to get into the ViewInfo to be able to get access to the cell. Thank you again.
I do have another question related to this. I don't understand why when I create a form which use the private DevExpress.XtraTreeList.TreeList directly. Example
private DevExpress.XtraTreeList.TreeList aTree;
I saw a method ClickCell in Object Inpsector. But when I create a class which inherite from a class using XTraTreeList. Then, i don't see the method ClickCell.
Here an example that the method ClickCell is not available:
class MyTreeList : DevExpress.XtraTreeList.TreeList
{
public MyTreeList()
{
}
}
partial class Form
{
private void InitializeComponent()
{
this.treeList = new MyTreeList();
.
.
.
}
}