346 references to IsEmpty
System.Drawing (5)
commonui\System\Drawing\Advanced\ColorTranslator.cs (4)
256if (c.IsEmpty && String.Equals(htmlColor, "LightGrey", StringComparison.OrdinalIgnoreCase)) 262if (c.IsEmpty) { 274if (c.IsEmpty) { 290if (c.IsEmpty)
commonui\System\Drawing\ColorConverter.cs (1)
295if (c.IsEmpty) {
System.Web (26)
UI\ObjectStateFormatter.cs (1)
1134if (c.IsEmpty) {
UI\WebControls\Calendar.cs (3)
947sb.Append(foreColor.IsEmpty ? defaultButtonColorText : ColorTranslator.ToHtml(foreColor)); 1327writer.Write(foreColor.IsEmpty ? defaultButtonColorText : ColorTranslator.ToHtml(foreColor)); 1643if (inDesignSelectionMode && cellStyle.ForeColor.IsEmpty) {
UI\WebControls\HyperLinkStyle.cs (1)
86if (!c.IsEmpty) {
UI\WebControls\Menu.cs (1)
2074if (!ForeColor.IsEmpty) {
UI\WebControls\MenuItemStyle.cs (2)
170if (!c.IsEmpty) { 178if (!c.IsEmpty) {
UI\WebControls\PopOutPanel.cs (4)
134if (ScrollerStyle.BackColor.IsEmpty) { 152if (BackColor.IsEmpty) { 199if (BackColor.IsEmpty && ((_owner == null) || _owner.BackColor.IsEmpty)) {
UI\WebControls\Style.cs (3)
531if (!c.IsEmpty) { 539if (!c.IsEmpty) { 547if (!c.IsEmpty) {
UI\WebControls\SubMenuStyle.cs (2)
126if (!c.IsEmpty) { 134if (!c.IsEmpty) {
UI\WebControls\Table.cs (1)
234if (!borderColor.IsEmpty) {
UI\WebControls\TreeNodeStyle.cs (2)
224if (!c.IsEmpty) { 232if (!c.IsEmpty) {
UI\WebControls\TreeView.cs (1)
990if (!ForeColor.IsEmpty) {
UI\WebParts\ToolZone.cs (1)
298if (!headerStyle.ForeColor.IsEmpty) {
UI\WebParts\WebPartMenu.cs (1)
61if (foreColor.IsEmpty == false) {
UI\WebParts\WebPartMenuStyle.cs (1)
73if (shadowColor.IsEmpty == false) {
UI\WebParts\WebPartZoneBase.cs (2)
283if (c.IsEmpty == false) { 1441if (!headerStyle.ForeColor.IsEmpty) {
System.Web.DataVisualization (54)
Common\Annotation\ArrowAnnotation.cs (1)
337(this.BackColor.IsEmpty) ? Color.White : this.BackColor,
Common\Annotation\CalloutAnnotation.cs (1)
1314 Color color = (this.BackColor.IsEmpty) ? Color.White : this.BackColor;
Common\ChartTypes\BarChart.cs (5)
1025!point.LabelBackColor.IsEmpty || 1026!point.LabelBorderColor.IsEmpty) 1791 (point.MarkerColor.IsEmpty) ? point.series.Color : point.MarkerColor, 2111!point.LabelBackColor.IsEmpty || 2112!point.LabelBorderColor.IsEmpty)
Common\ChartTypes\FastPointChart.cs (4)
313 SolidBrush markerBrush = new SolidBrush( ((series.MarkerColor.IsEmpty) ? series.Color : series.MarkerColor) ); 314 SolidBrush emptyMarkerBrush = new SolidBrush( ((series.EmptyPointStyle.MarkerColor.IsEmpty) ? series.EmptyPointStyle.Color : series.EmptyPointStyle.MarkerColor) ); 319 if(!series.MarkerBorderColor.IsEmpty && series.MarkerBorderWidth > 0) 323 if(!series.EmptyPointStyle.MarkerBorderColor.IsEmpty && series.EmptyPointStyle.MarkerBorderWidth > 0)
Common\ChartTypes\FunnelChart.cs (2)
2075 if(!testLabelInfo.Point.LabelBackColor.IsEmpty || 2077 !testLabelInfo.Point.LabelBorderColor.IsEmpty &&
Common\ChartTypes\PieChart.cs (2)
913 if( !point.BackSecondaryColor.IsEmpty ) 924 if( !point.BorderColor.IsEmpty )
Common\ChartTypes\RadarChart.cs (3)
720 markerColor.IsEmpty) 746 if(markerColor.IsEmpty) 1581 if(markerColor.IsEmpty)
Common\ChartTypes\StockChart.cs (2)
1048if (!point.LabelBackColor.IsEmpty || 1050!point.LabelBorderColor.IsEmpty)
Common\General\AxisScaleSegments.cs (1)
385 if( this.axis.ChartArea.ShadowOffset != 0 && !this.axis.ChartArea.ShadowColor.IsEmpty)
Common\General\ChartGraphics.cs (15)
1518 if( !backColor.IsEmpty || 1519 !borderColor.IsEmpty) 1530!borderColor.IsEmpty && borderDashStyle != ChartDashStyle.NotSet) 2425 (markColor.IsEmpty) ? axis.MajorTickMark.LineColor : markColor, 2606 (markColor.IsEmpty) ? axis.MajorTickMark.LineColor : markColor, 3407 if( backColor.IsEmpty ) 3412 if( backSecondaryColor.IsEmpty ) 3417 if( borderColor.IsEmpty || borderDashStyle == ChartDashStyle.NotSet) 4142 if( backColor.IsEmpty ) 4145 if( backSecondaryColor.IsEmpty ) 4148 if( borderColor.IsEmpty ) 4356 backSecondaryColor.IsEmpty ) 4446 if( backColor.IsEmpty ) 4449 if( backSecondaryColor.IsEmpty ) 4452 if( borderColor.IsEmpty )
Common\General\Label.cs (3)
1252if (!circAxis.TitleForeColor.IsEmpty) 1772using (Brush brush = new SolidBrush((label.ForeColor.IsEmpty) ? _foreColor : label.ForeColor)) 2489using (Brush brush = new SolidBrush((label.ForeColor.IsEmpty) ? _foreColor : label.ForeColor))
Common\General\Legend.cs (5)
4055 if(!legendColumn.HeaderBackColor.IsEmpty) 4154 if(!legendColumn.HeaderBackColor.IsEmpty) 4283 if(!this.TitleBackColor.IsEmpty) 4343 if(!this.TitleBackColor.IsEmpty || 4670 !this.BorderColor.IsEmpty &&
Common\General\LegendColumns.cs (7)
1569 if(this.BackColor.IsEmpty && this.Legend != null) 1580 !this.Legend.CellColumns[cellIndex].BackColor.IsEmpty) 1588 if(resultColor.IsEmpty && 1592 if(this.Legend.InterlacedRowsColor.IsEmpty) 1866 if(!this.ForeColor.IsEmpty) 1883 !this.Legend.CellColumns[cellIndex].ForeColor.IsEmpty) 1926 if(!cellBackColor.IsEmpty)
Common\General\Selection.cs (1)
2273(title.BackColor == Color.Transparent || title.BackColor.IsEmpty))
Common\General\Title.cs (2)
1211 if(!this.BackColor.IsEmpty || 1213 (!this.BorderColor.IsEmpty && this.BorderDashStyle != ChartDashStyle.NotSet) )
System.Windows.Forms (206)
misc\GDI\WindowsGraphics2.cs (2)
221if( !foreColor.IsEmpty && foreColor != this.dc.TextColor) 231DeviceContextBackgroundMode newBackGndMode = (backColor.IsEmpty || backColor == Color.Transparent) ?
winforms\Managed\System\WinForms\ButtonBase.cs (1)
1232if (isEnableVisualStyleBackgroundSet || ((RawBackColor.IsEmpty) && (BackColor == SystemColors.Control)))
winforms\Managed\System\WinForms\ButtonInternal\ButtonFlatAdapter.cs (13)
32bool hasCustomBorder = (Control.FlatAppearance.BorderSize != BORDERSIZE || !Control.FlatAppearance.BorderColor.IsEmpty); 36!Control.FlatAppearance.CheckedBackColor.IsEmpty || (SystemInformation.HighContrast ? state != CheckState.Indeterminate : state == CheckState.Unchecked), 42if (!Control.FlatAppearance.BorderColor.IsEmpty) { 53if (!Control.FlatAppearance.CheckedBackColor.IsEmpty) { 114bool hasCustomBorder = (Control.FlatAppearance.BorderSize != BORDERSIZE || !Control.FlatAppearance.BorderColor.IsEmpty); 118!Control.FlatAppearance.CheckedBackColor.IsEmpty || (SystemInformation.HighContrast ? state != CheckState.Indeterminate : state == CheckState.Unchecked), 123if (!Control.FlatAppearance.BorderColor.IsEmpty) { 134if (!Control.FlatAppearance.MouseDownBackColor.IsEmpty) { 192bool hasCustomBorder = (Control.FlatAppearance.BorderSize != BORDERSIZE || !Control.FlatAppearance.BorderColor.IsEmpty); 196!Control.FlatAppearance.CheckedBackColor.IsEmpty || state == CheckState.Unchecked, 202if (!Control.FlatAppearance.BorderColor.IsEmpty) { 213if (!Control.FlatAppearance.MouseOverBackColor.IsEmpty) { 216else if (!Control.FlatAppearance.CheckedBackColor.IsEmpty) {
winforms\Managed\System\WinForms\ColorDialog.cs (1)
121if (!value.IsEmpty) {
winforms\Managed\System\WinForms\Control.cs (13)
1084if (!c.IsEmpty) { 1102if (c.IsEmpty) { 1108if (!c.IsEmpty && IsValidBackColor(c)) 1119if (!value.IsEmpty || Properties.ContainsObject(PropBackColor)) { 2714if (!color.IsEmpty) { 2729if (c.IsEmpty) { 2735if (!c.IsEmpty) 2743if (!value.IsEmpty || Properties.ContainsObject(PropForeColor)) { 3195if (!c.IsEmpty && !GetStyle(ControlStyles.SupportsTransparentBackColor) && c.A < 255) 8330if (backColor.IsEmpty) { 8447if (foreColor.IsEmpty) { 12247return !backColor.IsEmpty; 12276return !foreColor.IsEmpty;
winforms\Managed\System\WinForms\DataGrid.cs (8)
420if (value.IsEmpty) { 1193if (value.IsEmpty) 1248if (value.IsEmpty) 1807if (value.IsEmpty) 2005if (value.IsEmpty) 2083if (value.IsEmpty) 2182if (value.IsEmpty) 2356if (value.IsEmpty)
winforms\Managed\System\WinForms\DataGridCaption.cs (2)
146if (value.IsEmpty) 247if (value.IsEmpty)
winforms\Managed\System\WinForms\DataGridParentRows.cs (2)
106if (value.IsEmpty) 225if (value.IsEmpty)
winforms\Managed\System\WinForms\DataGridTable.cs (9)
172if (value.IsEmpty) { 263if (value.IsEmpty) { 414if (value.IsEmpty) { 473if (value.IsEmpty) 590if (value.IsEmpty) 730if (value.IsEmpty) 806if (value.IsEmpty) 1224if (value.IsEmpty) 1297if (value.IsEmpty)
winforms\Managed\System\WinForms\DataGridView.cs (2)
1293if (value.IsEmpty) 3324if (value.IsEmpty)
winforms\Managed\System\WinForms\DataGridViewButtonColumn.cs (4)
233return (!defaultCellStyle.BackColor.IsEmpty || 234!defaultCellStyle.ForeColor.IsEmpty || 235!defaultCellStyle.SelectionBackColor.IsEmpty || 236!defaultCellStyle.SelectionForeColor.IsEmpty ||
winforms\Managed\System\WinForms\DataGridViewCell.cs (24)
2213if (cellStyle != null && !cellStyle.BackColor.IsEmpty) 2217else if (rowStyle != null && !rowStyle.BackColor.IsEmpty) 2221else if (!this.DataGridView.RowsDefaultCellStyle.BackColor.IsEmpty && 2222(rowIndex % 2 == 0 || this.DataGridView.AlternatingRowsDefaultCellStyle.BackColor.IsEmpty)) 2226else if (rowIndex % 2 == 1 && !this.DataGridView.AlternatingRowsDefaultCellStyle.BackColor.IsEmpty) 2230else if (columnStyle != null && !columnStyle.BackColor.IsEmpty) 2239if (cellStyle != null && !cellStyle.ForeColor.IsEmpty) 2243else if (rowStyle != null && !rowStyle.ForeColor.IsEmpty) 2247else if (!this.DataGridView.RowsDefaultCellStyle.ForeColor.IsEmpty && 2248(rowIndex % 2 == 0 || this.DataGridView.AlternatingRowsDefaultCellStyle.ForeColor.IsEmpty)) 2252else if (rowIndex % 2 == 1 && !this.DataGridView.AlternatingRowsDefaultCellStyle.ForeColor.IsEmpty) 2256else if (columnStyle != null && !columnStyle.ForeColor.IsEmpty) 2265if (cellStyle != null && !cellStyle.SelectionBackColor.IsEmpty) 2269else if (rowStyle != null && !rowStyle.SelectionBackColor.IsEmpty) 2273else if (!this.DataGridView.RowsDefaultCellStyle.SelectionBackColor.IsEmpty && 2274(rowIndex % 2 == 0 || this.DataGridView.AlternatingRowsDefaultCellStyle.SelectionBackColor.IsEmpty)) 2278else if (rowIndex % 2 == 1 && !this.DataGridView.AlternatingRowsDefaultCellStyle.SelectionBackColor.IsEmpty) 2282else if (columnStyle != null && !columnStyle.SelectionBackColor.IsEmpty) 2291if (cellStyle != null && !cellStyle.SelectionForeColor.IsEmpty) 2295else if (rowStyle != null && !rowStyle.SelectionForeColor.IsEmpty) 2299else if (!this.DataGridView.RowsDefaultCellStyle.SelectionForeColor.IsEmpty && 2300(rowIndex % 2 == 0 || this.DataGridView.AlternatingRowsDefaultCellStyle.SelectionForeColor.IsEmpty)) 2304else if (rowIndex % 2 == 1 && !this.DataGridView.AlternatingRowsDefaultCellStyle.SelectionForeColor.IsEmpty) 2308else if (columnStyle != null && !columnStyle.SelectionForeColor.IsEmpty)
winforms\Managed\System\WinForms\DataGridViewCellStyle.cs (8)
154if (!value.IsEmpty || this.Properties.ContainsObject(PropBackColor)) 248if (!value.IsEmpty || this.Properties.ContainsObject(PropForeColor)) 497if (!value.IsEmpty || this.Properties.ContainsObject(PropSelectionBackColor)) 521if (!value.IsEmpty || this.Properties.ContainsObject(PropSelectionForeColor)) 606if (!dataGridViewCellStyle.BackColor.IsEmpty) 610if (!dataGridViewCellStyle.ForeColor.IsEmpty) 614if (!dataGridViewCellStyle.SelectionBackColor.IsEmpty) 618if (!dataGridViewCellStyle.SelectionForeColor.IsEmpty)
winforms\Managed\System\WinForms\DataGridViewCheckBoxColumn.cs (4)
338return (!defaultCellStyle.BackColor.IsEmpty || 339!defaultCellStyle.ForeColor.IsEmpty || 340!defaultCellStyle.SelectionBackColor.IsEmpty || 341!defaultCellStyle.SelectionForeColor.IsEmpty ||
winforms\Managed\System\WinForms\DataGridViewColumn.cs (8)
314return (!defaultCellStyle.BackColor.IsEmpty || 315!defaultCellStyle.ForeColor.IsEmpty || 316!defaultCellStyle.SelectionBackColor.IsEmpty || 317!defaultCellStyle.SelectionForeColor.IsEmpty || 636if (columnStyle != null && !columnStyle.BackColor.IsEmpty) 645if (columnStyle != null && !columnStyle.ForeColor.IsEmpty) 654if (columnStyle != null && !columnStyle.SelectionBackColor.IsEmpty) 663if (columnStyle != null && !columnStyle.SelectionForeColor.IsEmpty)
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (8)
338if (cellStyle != null && !cellStyle.BackColor.IsEmpty) 342else if (!columnHeadersStyle.BackColor.IsEmpty) 351if (cellStyle != null && !cellStyle.ForeColor.IsEmpty) 355else if (!columnHeadersStyle.ForeColor.IsEmpty) 364if (cellStyle != null && !cellStyle.SelectionBackColor.IsEmpty) 368else if (!columnHeadersStyle.SelectionBackColor.IsEmpty) 377if (cellStyle != null && !cellStyle.SelectionForeColor.IsEmpty) 381else if (!columnHeadersStyle.SelectionForeColor.IsEmpty)
winforms\Managed\System\WinForms\DataGridViewImageColumn.cs (4)
330return (!defaultCellStyle.BackColor.IsEmpty || 331!defaultCellStyle.ForeColor.IsEmpty || 332!defaultCellStyle.SelectionBackColor.IsEmpty || 333!defaultCellStyle.SelectionForeColor.IsEmpty ||
winforms\Managed\System\WinForms\DataGridViewMethods.cs (8)
2841if (cellStyle != null && !cellStyle.BackColor.IsEmpty) 2845else if (!columnHeadersStyle.BackColor.IsEmpty) 2854if (cellStyle != null && !cellStyle.ForeColor.IsEmpty) 2858else if (!columnHeadersStyle.ForeColor.IsEmpty) 2867if (cellStyle != null && !cellStyle.SelectionBackColor.IsEmpty) 2871else if (!columnHeadersStyle.SelectionBackColor.IsEmpty) 2880if (cellStyle != null && !cellStyle.SelectionForeColor.IsEmpty) 2884else if (!columnHeadersStyle.SelectionForeColor.IsEmpty)
winforms\Managed\System\WinForms\DataGridViewRow.cs (24)
697if (cellStyle != null && !cellStyle.BackColor.IsEmpty) 701else if (!rowHeadersStyle.BackColor.IsEmpty) 710if (cellStyle != null && !cellStyle.ForeColor.IsEmpty) 714else if (!rowHeadersStyle.ForeColor.IsEmpty) 723if (cellStyle != null && !cellStyle.SelectionBackColor.IsEmpty) 727else if (!rowHeadersStyle.SelectionBackColor.IsEmpty) 736if (cellStyle != null && !cellStyle.SelectionForeColor.IsEmpty) 740else if (!rowHeadersStyle.SelectionForeColor.IsEmpty) 891if (rowStyle != null && !rowStyle.BackColor.IsEmpty) 895else if (!rowsDefaultCellStyle.BackColor.IsEmpty && (rowIndex % 2 == 0 || alternatingRowsDefaultCellStyle.BackColor.IsEmpty)) 899else if (rowIndex % 2 == 1 && !alternatingRowsDefaultCellStyle.BackColor.IsEmpty) 908if (rowStyle != null && !rowStyle.ForeColor.IsEmpty) 912else if (!rowsDefaultCellStyle.ForeColor.IsEmpty && (rowIndex % 2 == 0 || alternatingRowsDefaultCellStyle.ForeColor.IsEmpty)) 916else if (rowIndex % 2 == 1 && !alternatingRowsDefaultCellStyle.ForeColor.IsEmpty) 925if (rowStyle != null && !rowStyle.SelectionBackColor.IsEmpty) 929else if (!rowsDefaultCellStyle.SelectionBackColor.IsEmpty && (rowIndex % 2 == 0 || alternatingRowsDefaultCellStyle.SelectionBackColor.IsEmpty)) 933else if (rowIndex % 2 == 1 && !alternatingRowsDefaultCellStyle.SelectionBackColor.IsEmpty) 942if (rowStyle != null && !rowStyle.SelectionForeColor.IsEmpty) 946else if (!rowsDefaultCellStyle.SelectionForeColor.IsEmpty && (rowIndex % 2 == 0 || alternatingRowsDefaultCellStyle.SelectionForeColor.IsEmpty)) 950else if (rowIndex % 2 == 1 && !alternatingRowsDefaultCellStyle.SelectionForeColor.IsEmpty)
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (8)
464if (cellStyle != null && !cellStyle.BackColor.IsEmpty) 468else if (!rowHeadersStyle.BackColor.IsEmpty) 477if (cellStyle != null && !cellStyle.ForeColor.IsEmpty) 481else if (!rowHeadersStyle.ForeColor.IsEmpty) 490if (cellStyle != null && !cellStyle.SelectionBackColor.IsEmpty) 494else if (!rowHeadersStyle.SelectionBackColor.IsEmpty) 503if (cellStyle != null && !cellStyle.SelectionForeColor.IsEmpty) 507else if (!rowHeadersStyle.SelectionForeColor.IsEmpty)
winforms\Managed\System\WinForms\DateTimePicker.cs (5)
250if (value.IsEmpty) { 317if (value.IsEmpty) { 342if (value.IsEmpty) { 367if (value.IsEmpty) { 392if (value.IsEmpty) {
winforms\Managed\System\WinForms\FontDialog.cs (1)
180if (!value.IsEmpty) {
winforms\Managed\System\WinForms\Form.cs (2)
772if (!c.IsEmpty) 6456if (transparencyKey.IsEmpty) {
winforms\Managed\System\WinForms\LinkLabel.cs (9)
107if (activeLinkColor.IsEmpty) { 134if (disabledLinkColor.IsEmpty) { 190if (iedisabledLinkColor.IsEmpty) { 311if (linkColor.IsEmpty) { 470if (visitedLinkColor.IsEmpty) { 1749return !activeLinkColor.IsEmpty; 1759return !disabledLinkColor.IsEmpty; 1785return !linkColor.IsEmpty; 1804return !visitedLinkColor.IsEmpty;
winforms\Managed\System\WinForms\LinkUtilities.cs (3)
87if (ielinkColor.IsEmpty) { 96if (ieactiveLinkColor.IsEmpty) { 104if (ievisitedLinkColor.IsEmpty) {
winforms\Managed\System\WinForms\ListView.cs (2)
2774if (!haveRenderInfo || riFore.IsEmpty) 2827if (!haveRenderInfo || riBack.IsEmpty)
winforms\Managed\System\WinForms\ListViewInsertionMark.cs (2)
77if (color.IsEmpty) { 139if (!color.IsEmpty) {
winforms\Managed\System\WinForms\ListViewItem.cs (2)
1507return style != null && !style.backColor.IsEmpty; 1519return style != null && !style.foreColor.IsEmpty;
winforms\Managed\System\WinForms\MonthCalendar.cs (3)
1118if (value.IsEmpty) { 1141if (value.IsEmpty) { 1164if (value.IsEmpty) {
winforms\Managed\System\WinForms\OwnerDrawPropertyBag.cs (2)
113return (Font == null && foreColor.IsEmpty && backColor.IsEmpty);
winforms\Managed\System\WinForms\ToolStripItem.cs (9)
544if (!c.IsEmpty) 555if (!value.IsEmpty || Properties.ContainsObject(PropBackColor)) { 1015if (!foreColor.IsEmpty){ 1028if (!value.IsEmpty || Properties.ContainsObject(PropForeColor)) { 1425if (!color.IsEmpty) { 3269if (backColor.IsEmpty) { 3316if (foreColor.IsEmpty) { 3668return !backColor.IsEmpty; 3684return !foreColor.IsEmpty;
winforms\Managed\System\WinForms\ToolStripLabel.cs (6)
89if (activeLinkColor.IsEmpty) { 149if (linkColor.IsEmpty) { 187if (visitedLinkColor.IsEmpty) { 267return !activeLinkColor.IsEmpty; 272return !linkColor.IsEmpty; 277return !visitedLinkColor.IsEmpty;
winforms\Managed\System\WinForms\ToolTip.cs (1)
284if (value.IsEmpty) {
winforms\Managed\System\WinForms\TreeNode.cs (4)
252if (value.IsEmpty) { 257if (!oldbk.IsEmpty) InvalidateHostTree(); 467if (value.IsEmpty) { 472if (!oldfc.IsEmpty) InvalidateHostTree();
winforms\Managed\System\WinForms\TreeView.cs (2)
2780if (renderinfo != null && !riFore.IsEmpty) { 2784if (renderinfo != null && !riBack.IsEmpty) {
System.Windows.Forms.DataVisualization (55)
Common\Annotation\ArrowAnnotation.cs (1)
337(this.BackColor.IsEmpty) ? Color.White : this.BackColor,
Common\Annotation\CalloutAnnotation.cs (1)
1314 Color color = (this.BackColor.IsEmpty) ? Color.White : this.BackColor;
Common\ChartTypes\BarChart.cs (5)
1025!point.LabelBackColor.IsEmpty || 1026!point.LabelBorderColor.IsEmpty) 1791 (point.MarkerColor.IsEmpty) ? point.series.Color : point.MarkerColor, 2111!point.LabelBackColor.IsEmpty || 2112!point.LabelBorderColor.IsEmpty)
Common\ChartTypes\FastPointChart.cs (4)
313 SolidBrush markerBrush = new SolidBrush( ((series.MarkerColor.IsEmpty) ? series.Color : series.MarkerColor) ); 314 SolidBrush emptyMarkerBrush = new SolidBrush( ((series.EmptyPointStyle.MarkerColor.IsEmpty) ? series.EmptyPointStyle.Color : series.EmptyPointStyle.MarkerColor) ); 319 if(!series.MarkerBorderColor.IsEmpty && series.MarkerBorderWidth > 0) 323 if(!series.EmptyPointStyle.MarkerBorderColor.IsEmpty && series.EmptyPointStyle.MarkerBorderWidth > 0)
Common\ChartTypes\FunnelChart.cs (2)
2075 if(!testLabelInfo.Point.LabelBackColor.IsEmpty || 2077 !testLabelInfo.Point.LabelBorderColor.IsEmpty &&
Common\ChartTypes\PieChart.cs (2)
913 if( !point.BackSecondaryColor.IsEmpty ) 924 if( !point.BorderColor.IsEmpty )
Common\ChartTypes\RadarChart.cs (3)
720 markerColor.IsEmpty) 746 if(markerColor.IsEmpty) 1581 if(markerColor.IsEmpty)
Common\ChartTypes\StockChart.cs (2)
1048if (!point.LabelBackColor.IsEmpty || 1050!point.LabelBorderColor.IsEmpty)
Common\General\AxisScaleSegments.cs (1)
385 if( this.axis.ChartArea.ShadowOffset != 0 && !this.axis.ChartArea.ShadowColor.IsEmpty)
Common\General\ChartGraphics.cs (15)
1518 if( !backColor.IsEmpty || 1519 !borderColor.IsEmpty) 1530!borderColor.IsEmpty && borderDashStyle != ChartDashStyle.NotSet) 2425 (markColor.IsEmpty) ? axis.MajorTickMark.LineColor : markColor, 2606 (markColor.IsEmpty) ? axis.MajorTickMark.LineColor : markColor, 3407 if( backColor.IsEmpty ) 3412 if( backSecondaryColor.IsEmpty ) 3417 if( borderColor.IsEmpty || borderDashStyle == ChartDashStyle.NotSet) 4142 if( backColor.IsEmpty ) 4145 if( backSecondaryColor.IsEmpty ) 4148 if( borderColor.IsEmpty ) 4356 backSecondaryColor.IsEmpty ) 4446 if( backColor.IsEmpty ) 4449 if( backSecondaryColor.IsEmpty ) 4452 if( borderColor.IsEmpty )
Common\General\Label.cs (3)
1252if (!circAxis.TitleForeColor.IsEmpty) 1772using (Brush brush = new SolidBrush((label.ForeColor.IsEmpty) ? _foreColor : label.ForeColor)) 2489using (Brush brush = new SolidBrush((label.ForeColor.IsEmpty) ? _foreColor : label.ForeColor))
Common\General\Legend.cs (5)
4055 if(!legendColumn.HeaderBackColor.IsEmpty) 4154 if(!legendColumn.HeaderBackColor.IsEmpty) 4283 if(!this.TitleBackColor.IsEmpty) 4343 if(!this.TitleBackColor.IsEmpty || 4670 !this.BorderColor.IsEmpty &&
Common\General\LegendColumns.cs (7)
1569 if(this.BackColor.IsEmpty && this.Legend != null) 1580 !this.Legend.CellColumns[cellIndex].BackColor.IsEmpty) 1588 if(resultColor.IsEmpty && 1592 if(this.Legend.InterlacedRowsColor.IsEmpty) 1866 if(!this.ForeColor.IsEmpty) 1883 !this.Legend.CellColumns[cellIndex].ForeColor.IsEmpty) 1926 if(!cellBackColor.IsEmpty)
Common\General\Selection.cs (1)
2273(title.BackColor == Color.Transparent || title.BackColor.IsEmpty))
Common\General\Title.cs (2)
1211 if(!this.BackColor.IsEmpty || 1213 (!this.BorderColor.IsEmpty && this.BorderDashStyle != ChartDashStyle.NotSet) )
WinForm\ChartWinControl.cs (1)
385 !this.BackColor.IsEmpty &&