PowerTools InputMan for Windows Forms 8.0J
InputDirection プロパティ
使用例 

テキストの入力方向を取得または設定します。
構文
Public Property InputDirection As CharMaskInputDirection
public CharMaskInputDirection InputDirection {get; set;}

プロパティ値

入力方向を表すCharMaskInputDirection列挙体。 既定値はLeftToRightです。
解説
InputDirection プロパティは、ユーザーがデータを入力する方向と順序を指定する場合に使用します。
使用例
入力方向の設定とクリップボード処理を設定した GcCharMask コントロールを作成するコード例を次に示します。この例では他に ClipContent と InputDirection プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetInputDirectionSettings()
{
    // Create an instance of a GcMask control.
    GcCharMask gcCharMask1 = new GcCharMask();

    // Sets the AutoSize to fix the size.
    gcCharMask1.AutoSize = true;

    // Sets the CharBoxSpacing to defines the distance of every charbox.
    gcCharMask1.CharBoxSpacing = 1;

    // Sets the InputDirection to determines the input direction is from right side, to left side.
    gcCharMask1.InputDirection = CharMaskInputDirection.RightToLeft;

    // After sets the ClipContent to ClipContent.ExcludeLiterals.
    // You can copys or cuts the value without literals from the GcCharMask, and paste it to other controls.
    gcCharMask1.ClipContent = ClipContent.ExcludeLiterals;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetInputDirectionSettings()
    ' Create an instance of a GcMask control.
    Dim gcCharMask1 As New GcCharMask()
   
    ' Sets the AutoSize to fix the size.
    gcCharMask1.AutoSize = True

    ' Sets the CharBoxSpacing to defines the distance of every charbox.
    gcCharMask1.CharBoxSpacing = 1

    ' Sets the InputDirection to determines the input direction is from right side, to left side.
    gcCharMask1.InputDirection = CharMaskInputDirection.RightToLeft

    ' After sets the ClipContent to ClipContent.ExcludeLiterals.
    ' You can copys or cuts the value without literals from the GcCharMask, and paste it to other controls.
    gcCharMask1.ClipContent = ClipContent.ExcludeLiterals
End Sub
参照

GcCharMask クラス
GcCharMask メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.