14 lines
172 B
C#
14 lines
172 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Interaction
|
|
{
|
|
public interface ISelectableVisual
|
|
{
|
|
bool IsSelected { get; set; }
|
|
|
|
void OnSelect();
|
|
|
|
void OnDeselect();
|
|
}
|
|
}
|