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)
506BackgroundImageLayout = value 513control.BackgroundImageLayout = value; 534control.BackgroundImageLayout = ImageLayout.Center; 539control.BackgroundImageLayout = ImageLayout.Center; 544control.BackgroundImageLayout = ImageLayout.Stretch; 550control.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)
37Assert.Equal(ImageLayout.Tile, control.BackgroundImageLayout);
TextBoxBaseTests.cs (6)
508Assert.Equal(value, control.BackgroundImageLayout); 514Assert.Equal(value, control.BackgroundImageLayout); 535Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout); 540Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout); 545Assert.Equal(ImageLayout.Stretch, control.BackgroundImageLayout); 551Assert.Equal(ImageLayout.Center, control.BackgroundImageLayout);
TextBoxTests.cs (1)
36Assert.Equal(ImageLayout.Tile, control.BackgroundImageLayout);