J
jason aubert
Guest
I have defined my property DEFINE PUBLIC PROPERTY ControlLayout AS LayoutLibrary.LayoutOptions NO-UNDO GET. PUBLIC SET(layoutStyle AS LayoutLibrary.LayoutOptions): ASSIGN ControlLayout = layoutStyle. END SET. And I defined the .net Enum in Visual studio using System; namespace LayoutLibrary{ public class LayoutOptions { public enum Options { NoLabel, TopLabel, HorizontalLine, VerticalLine, Default } } } and imported the .dll file into the assemblies.xml. The property is defined and shows up but it looks as if the property is disabled and the options are not available (IE no dropdown menu) Is there something wrong with the way I defined my ENUM?
Continue reading...
Continue reading...