Implemented interface member:
property
Size
System.Drawing.IIcon.Size
18 references to Size
System.Drawing.Common (15)
System\Drawing\Icon.cs (15)
86_iconSize = original.Size; 190public int Height => Size.Height; 234public int Width => Size.Width; 236public object Clone() => new Icon(this, Size.Width, Size.Height); 283Size cursorSize = Size; 354Size size = Size; 632bitmap = new Bitmap(Size.Width, Size.Height, PixelFormat.Format32bppArgb); 635BitmapData bmpdata = bitmap.LockBits(new Rectangle(0, 0, Size.Width, Size.Height), 646int lineLength = Size.Width * 4; 647int width = Size.Width; 648for (int j = (Size.Height - 1) * 4; j >= 0; j -= 4) 737Size size = Size;
System.Windows.Forms (2)
System\Windows\Forms\ErrorProvider\ErrorProvider.IconRegion.cs (2)
42Size size = _icon.Size; 81public Size Size => _icon.Size;
System.Windows.Forms.Design (1)
System\Drawing\Design\CursorEditor.CursorUI.cs (1)
93cursorWidth = scaled.Size.Width;