Control.ScaleChildren 속성
정의
자식 컨트롤의 배율을 결정하는 값을 가져옵니다.Gets a value that determines the scaling of child controls.
protected:
virtual property bool ScaleChildren { bool get(); };
protected virtual bool ScaleChildren { get; }
member this.ScaleChildren : bool
Protected Overridable ReadOnly Property ScaleChildren As Boolean
속성 값
이 컨트롤에서 true
메서드가 호출될 때 자식 컨트롤의 배율이 조정되면 Scale(Single)이고, 그렇지 않으면 false
입니다.true
if child controls will be scaled when the Scale(Single) method on this control is called; otherwise, false
. 기본값은 true
입니다.The default is true
.
설명
속성이 이면 ScaleChildren true
Scale 메서드는 ScaleControl 각 자식 컨트롤의 메서드를 재귀적으로 호출 합니다.If the ScaleChildren property is true
, then the Scale method will recursively call the ScaleControl method of each of its child controls.
의 기본 구현은 ScaleChildren 항상를 반환 true
합니다.The default implementation of ScaleChildren always returns true
. 파생 된 클래스는를 반환 하도록를 재정의 하 여 ScaleChildren false
해당 자식에 대해 크기 조정을 수행 하지 않아야 함을 나타낼 수 있습니다.Derived classes can override ScaleChildren to return false
to indicate that scaling should not be performed on their children.