Grid Row Formatting

	private void gridAttributesSales_InitializeRow(object sender, Infragistics.Win.UltraWinGrid.InitializeRowEventArgs args)
	{
				SalesAttributes = (EpiUltraGrid)csm.GetNativeControlReference("734456b7-1448-419b-87f8-f2c950d63cc2");
		if (args.Row.Cells["Calculated_TotalTouches"].Value.ToString() == "0") 
					{
						SalesAttributes.Row.Appearance.BackColor = Color.Red;
					}	
		
	}
	

Okay that line compiles but now I have an issue with the last line…