Created
March 2, 2020 20:43
-
-
Save hasokeric/6ac4333b3586f84166e55c7a395c1bcd to your computer and use it in GitHub Desktop.
grdPayments.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.grdPaymentSched.DisplayLayout.BandsSerializer.Add(ultraGridBand1); | |
this.grdPaymentSched.DisplayLayout.MaxBandDepth = 1; | |
this.grdPaymentSched.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False; | |
this.grdPaymentSched.DisplayLayout.Override.AllowMultiCellOperations = ((Infragistics.Win.UltraWinGrid.AllowMultiCellOperation)((Infragistics.Win.UltraWinGrid.AllowMultiCellOperation.Copy | Infragistics.Win.UltraWinGrid.AllowMultiCellOperation.CopyWithHeaders))); | |
this.grdPaymentSched.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortSingle; | |
this.grdPaymentSched.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand; | |
this.grdPaymentSched.DocCurrencyCols = new string[0]; | |
this.grdPaymentSched.EpiAllowPaste = false; | |
this.grdPaymentSched.EpiAllowPasteInsert = false; | |
this.grdPaymentSched.EpiAutoFit = false; | |
this.grdPaymentSched.EpiBinding = "OrderSched"; | |
this.grdPaymentSched.EpiGuid = "ce9532ee-a9a5-48f5-a7d6-f10efb62e2ce"; | |
this.grdPaymentSched.InsertNewRowAfterLastRow = false; | |
this.grdPaymentSched.Location = new System.Drawing.Point(0, 0); | |
this.grdPaymentSched.Name = "grdPaymentSched"; | |
this.grdPaymentSched.PreserveColSettings = new string[0]; | |
this.grdPaymentSched.Size = new System.Drawing.Size(701, 287); | |
this.grdPaymentSched.TabIndex = 84; | |
resources.ApplyResources(this.grdPaymentSched, "grdPaymentSched"); | |
this.grdPaymentSched.UpdateMode = Infragistics.Win.UltraWinGrid.UpdateMode.OnUpdate; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment