1 write to nameColumn
System.WorkflowServices (1)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (1)
613nameColumn = new DataGridViewTextBoxColumn();
13 references to nameColumn
System.WorkflowServices (13)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (13)
167this.parametersGrid.CurrentCell = this.parametersGrid.Rows[this.parametersGrid.Rows.Count - 2].Cells[this.nameColumn.Index]; 298this.parametersGrid.CurrentCell = currentRow.Cells[this.nameColumn.Index]; 313this.parametersGrid.CurrentCell = currentRow.Cells[this.nameColumn.Index]; 365if (e.ColumnIndex == this.nameColumn.Index) 372if (typeof(void).ToString().Equals(e.FormattedValue) && !(this.parametersGrid.Rows[e.RowIndex].Cells[this.nameColumn.Index].Value.Equals(SR2.GetString(SR2.ReturnValueString)))) 413if (!this.parametersGrid.Rows[this.parametersGrid.RowCount - 1].Cells[this.nameColumn.Index].Value.Equals(this.ParameterTemplateRowName)) 533returnValueRow.Cells[this.nameColumn.Index].ReadOnly = true; 614nameColumn.HeaderText = SR2.GetString(SR2.ParameterColumnHeaderName); 615nameColumn.Name = "Name"; 616nameColumn.SortMode = DataGridViewColumnSortMode.NotSortable; 617this.parametersGrid.Columns.Add(nameColumn); 704string name = row.Cells[this.nameColumn.Index].Value as string; 767if (parameterName.Equals(row.Cells[this.nameColumn.Index].Value.ToString()))