Example #1
0
        public TArgumentTypesDefault()
        {
            ConnectionData = TDatabaseAuthentication.CreateDefault;

            RequestData = TRequestData.CreateDefault;
            ReportData  = TReportData.CreateDefault;

            EntityAction = null;
            Category     = Server.Models.Infrastructure.TCategory.None;

            HorizontalStyle = TStyleInfo.Create(TContentStyle.Mode.Horizontal);
            VerticalStyle   = TStyleInfo.Create(TContentStyle.Mode.Vertical);
        }
Example #2
0
 TStyleItem()
 {
     StyleInfo = TStyleInfo.CreateDefault;
 }
Example #3
0
 protected TStyleItem(TContentStyle.Mode styleMode, string style)
     : this()
 {
     StyleInfo = TStyleInfo.Create(styleMode);
     StyleInfo.Select(style);
 }