'Declaration Public Enum VAlign Inherits System.Enum
public enum VAlign : System.Enum
Member | Description |
---|---|
Bottom | Align to the bottom |
Default | Use the current default |
Middle | Align in the middle |
Top | Align to the top |
Imports Infragistics.Win Private Sub SetupGridImages() Dim appearance As Appearance = New Appearance() appearance.ImageBackground = Me.Icon.ToBitmap() appearance.ImageBackgroundOrigin = ImageBackgroundOrigin.Form appearance.ImageBackgroundStyle = ImageBackgroundStyle.Stretched appearance.ImageBackgroundAlpha = Alpha.UseAlphaLevel appearance.AlphaLevel = 125 appearance.Image = Me.Icon.ToBitmap() appearance.ImageVAlign = VAlign.Middle appearance.ImageHAlign = HAlign.Center Me.ultraGrid1.DisplayLayout.Appearance = appearance End Sub
using Infragistics.Win; private void SetupGridImages() { Appearance appearance = new Appearance(); appearance.ImageBackground = this.Icon.ToBitmap(); appearance.ImageBackgroundOrigin = ImageBackgroundOrigin.Form; appearance.ImageBackgroundStyle = ImageBackgroundStyle.Stretched ; appearance.ImageBackgroundAlpha = Alpha.UseAlphaLevel ; appearance.AlphaLevel = 125; appearance.Image = this.Icon.ToBitmap(); appearance.ImageVAlign = VAlign.Middle; appearance.ImageHAlign = HAlign.Center; this.ultraGrid1.DisplayLayout.Appearance = appearance; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2