Form.AutoScale プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
This property has been deprecated. Use the AutoScaleMode property instead. http://go.microsoft.com/fwlink/?linkid=14202
注意事項
This property has been deprecated. Use the AutoScaleMode property instead. https://go.microsoft.com/fwlink/?linkid=14202
フォームで使用されるフォントの高さに合わせてフォームのサイズを調整し、そのコントロールをスケールするかどうかを示す値を取得または設定します。
public:
property bool AutoScale { bool get(); void set(bool value); };
public bool AutoScale { get; set; }
[System.ComponentModel.Browsable(false)]
[System.Obsolete("This property has been deprecated. Use the AutoScaleMode property instead. http://go.microsoft.com/fwlink/?linkid=14202")]
public bool AutoScale { get; set; }
[System.ComponentModel.Browsable(false)]
[System.Obsolete("This property has been deprecated. Use the AutoScaleMode property instead. https://go.microsoft.com/fwlink/?linkid=14202")]
public bool AutoScale { get; set; }
member this.AutoScale : bool with get, set
[<System.ComponentModel.Browsable(false)>]
[<System.Obsolete("This property has been deprecated. Use the AutoScaleMode property instead. http://go.microsoft.com/fwlink/?linkid=14202")>]
member this.AutoScale : bool with get, set
[<System.ComponentModel.Browsable(false)>]
[<System.Obsolete("This property has been deprecated. Use the AutoScaleMode property instead. https://go.microsoft.com/fwlink/?linkid=14202")>]
member this.AutoScale : bool with get, set
Public Property AutoScale As Boolean
プロパティ値
現在フォームに割り当てられているフォントに合わせて、フォームとそのコントロールを自動的にスケールする場合は true
。それ以外の場合は false
。 既定値は、true
です。
- 属性
注釈
重要
AutoScaleは古く、旧バージョンとの互換性のために保持されています。 旧式でない代替手段は、ContainerControl.AutoScaleMode です。 自動スケーリングの詳細については、「Windows フォームでの自動スケーリング」を参照してください。
このプロパティを使用すると、フォントの変更に基づいてフォームとそのコントロールを自動的に調整できます。 これは、Windows で使用するために指定された言語に基づいてフォントが増減する可能性があるアプリケーションで役立ちます。
フォームが自動スケーリングするサイズを取得するには、 プロパティを AutoScaleBaseSize 使用します。 フォームが特定のフォントに基づいて自動スケーリングするサイズを決定する場合は、 メソッドを使用します GetAutoScaleSize 。
適用対象
.NET