ILookupEditor.cs 265 B

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