// Token: 0x06004712 RID: 18194 RVA: 0x00142414 File Offset: 0x00140614 private static object OnCoerceClip(DependencyObject d, object baseValue) { DataGridCell cell = (DataGridCell)d; Geometry geometry = baseValue as Geometry; Geometry frozenClipForCell = DataGridHelper.GetFrozenClipForCell(cell); if (frozenClipForCell != null) { if (geometry == null) { return(frozenClipForCell); } geometry = new CombinedGeometry(GeometryCombineMode.Intersect, geometry, frozenClipForCell); } return(geometry); }