ILookupEditor.cs 235 B

12345678910111213
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public interface ILookupEditor : IButtonEditor
  5. {
  6. Type Type { get; }
  7. int Width { get; set; }
  8. CoreTable Values(string columnname, object[] items = null);
  9. }
  10. }