Control.Created 속성
정의
컨트롤이 만들어졌는지를 나타내는 값을 가져옵니다.Gets a value indicating whether the control has been created.
public:
property bool Created { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool Created { get; }
member this.Created : bool
Public ReadOnly Property Created As Boolean
속성 값
컨트롤이 만들어졌으면 true
이고, 그렇지 않으면 false
입니다.true
if the control has been created; otherwise, false
.
- 특성
설명
컨트롤의 핸들이 만들어지거나 아직 다시 만들어지지 않은 경우에도 Created 속성은 Control 성공적으로 만들어진 경우 true
을 반환 합니다.The Created property returns true
if the Control was successfully created even though the control's handle might not have been created or recreated yet.