1 write to rightsTable
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
52this.rightsTable = new RightsTable();
26 references to rightsTable
PresentationUI (26)
MS\Internal\Documents\RMPublishingDialog.cs (8)
122rightsTable.InitializeRightsTable(user.Name, grantDictionary); 250foreach (DataGridViewRow row in rightsTable.Rows) 569if (rightsTable.SelectedRows.Count == 1) 572DataGridViewRow row = rightsTable.SelectedRows[0]; 674rightsTable.AddUser(new RightsTableUser(trimmedName)); 714rightsTable.AddUser(new RightsTableUser(SR.RMPublishingAnyoneUserDisplay)); 726rightsTable.DeleteUser(); 838buttonEveryone.Enabled = !rightsTable.AnyoneUserPresent;
MS\Internal\Documents\RMPublishingDialog.Designer.cs (18)
141this.flowLayoutPanelPermissions.Controls.Add(this.rightsTable); 228this.rightsTable.AdvancedRowHeadersBorderStyle.Bottom = System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Single; 229this.rightsTable.AllowDrop = false; 230this.rightsTable.AllowUserToAddRows = false; 231this.rightsTable.AllowUserToDeleteRows = false; 232this.rightsTable.AllowUserToOrderColumns = false; 233this.rightsTable.AllowUserToResizeColumns = false; 234this.rightsTable.AllowUserToResizeRows = false; 235this.rightsTable.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 236this.rightsTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; 237this.rightsTable.MultiSelect = false; 238this.rightsTable.Name = "rightsTable"; 239this.rightsTable.RowHeadersVisible = false; 240this.rightsTable.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 241this.rightsTable.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; 242this.rightsTable.Size = new System.Drawing.Size(635, 150); 243this.rightsTable.SelectionChanged += new System.EventHandler(this.rightsTable_SelectionChanged); 352this.rightsTable.TabIndex = 17;