PowerTools InputMan for Windows Forms 8.0J
BackgroundImageLayout プロパティ (EditBase)
使用例 

コントロールに表示する背景イメージのレイアウトを取得または設定します。
構文
Public Overrides Property BackgroundImageLayout As ImageLayout
public override ImageLayout BackgroundImageLayout {get; set;}

プロパティ値

コントロールに表示する背景イメージのレイアウトを指定する ImageLayout列挙体。 既定値はTileです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException 指定された列挙値が存在しません。
解説
このメンバはControlクラスの BackgroundImageLayout プロパティをオーバーライドしています。
使用例
背景画像を設定した GcMask コントロールを作成するコード例を次に示します。この例では他に BackgroundImage と GrapeCity.Win.Editors.EditBase.BackgroundImageLayout プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using System.Drawing;
//  using GrapeCity.Win.Editors;

public void SetBackgroundImageSettings()
{
    // Create an instance of a GcMask control.
    GcMask gcMask1 = new GcMask();
    // Sets the BackgroundImage property.
    gcMask1.BackgroundImage = new Bitmap(@"C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Water lilies.jpg");
    // Sets the BackgroundImageLayout property for displaying the Image to center.
    gcMask1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports System.Drawing;
'  Imports GrapeCity.Win.Editors;

Public Sub SetBackgroundImageSettings()
    ' Create an instance of a GcMask control.
    Dim gcMask1 As New GcMask()
    ' Sets the BackgroundImage property.
    gcMask1.BackgroundImage = New Bitmap("C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Water lilies.jpg")
    ' Sets the BackgroundImageLayout property for displaying the Image to center.
    gcMask1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center
End Sub
参照

EditBase クラス
EditBase メンバ
BackgroundImage プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.