Base:
property
BackgroundImageLayout
System.Windows.Forms.Control.BackgroundImageLayout
1 override of BackgroundImageLayout
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
196public override ImageLayout BackgroundImageLayout
7 writes to BackgroundImageLayout
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
199set => base.BackgroundImageLayout = value;
System.Windows.Forms.Tests (6)
TextBoxBaseTests.cs (6)
504BackgroundImageLayout = value 511control.BackgroundImageLayout = value; 532control.BackgroundImageLayout = ImageLayout.Center; 537control.BackgroundImageLayout = ImageLayout.Center; 542control.BackgroundImageLayout = ImageLayout.Stretch; 548control.BackgroundImageLayout = ImageLayout.Center;
9 references to BackgroundImageLayout
System.Windows.Forms (1)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
198get => base.BackgroundImageLayout;
System.Windows.Forms.Tests (8)
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
35Assert.Equal(ImageLayout.Tile, control.BackgroundImageLayout);
TextBoxBaseTests.cs (6)
506Assert.Equal(value, control.BackgroundImageLayout); 512Assert.Equal(value, control.BackgroundImageLayout); 533Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout); 538Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout); 543Assert.Equal(ImageLayout.Stretch, control.BackgroundImageLayout); 549Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout);
TextBoxTests.cs (1)
34Assert.Equal(ImageLayout.Tile, control.BackgroundImageLayout);