예제 #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);
        }
예제 #2
0
파일: StyleItem.cs 프로젝트: robjuca/Blood
 TStyleItem()
 {
     StyleInfo = TStyleInfo.CreateDefault;
 }
예제 #3
0
파일: StyleItem.cs 프로젝트: robjuca/Blood
 protected TStyleItem(TContentStyle.Mode styleMode, string style)
     : this()
 {
     StyleInfo = TStyleInfo.Create(styleMode);
     StyleInfo.Select(style);
 }