Button.Placement 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Button이 아래에 있는 셀에 연결되는 방식을 나타내는 개체를 가져오거나 설정합니다.
public:
property System::Object ^ Placement { System::Object ^ get(); void set(System::Object ^ value); };
public object Placement { get; set; }
member this.Placement : obj with get, set
Public Property Placement As Object
속성 값
다음 XlPlacement 값 xlFreeFloating중 하나입니다. xlMove. xlMoveAndSize.
예제
다음 코드 예제에서는 워크시트에 런타임 동작이 다른 두 개의 Button 컨트롤을 추가합니다. 첫 번째 단추는 B2부터 C3까지의 셀 범위를 포함합니다. 사용자가 런타임에 이 범위의 열 또는 행 크기를 조정하면 첫 번째 단추의 크기가 변경 내용에 맞게 조정됩니다. 두 번째 단추는 B5부터 C6까지의 셀 범위를 가리고 Placement 이 단추의 속성은 로 xlFreeFloating설정됩니다. 사용자가 런타임에 이 범위의 열 또는 행 크기를 조정하면 두 번째 단추의 크기가 변경되지 않습니다.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.
private void ComparePlacementBehavior()
{
Microsoft.Office.Tools.Excel.Controls.Button cellButton =
this.Controls.AddButton(this.Range["B2", "C3"],
"cellButton");
cellButton.Text = "Resizes with cells";
Microsoft.Office.Tools.Excel.Controls.Button fixedButton =
this.Controls.AddButton(this.Range["B5", "C6"],
"fixedButton");
fixedButton.Text = "Does not resize";
fixedButton.Placement = Excel.XlPlacement.xlFreeFloating;
}
Private Sub ComparePlacementBehavior()
Dim CellButton As Microsoft.Office.Tools.Excel.Controls.Button = _
Me.Controls.AddButton(Me.Range("B2", "C3"), "CellButton")
CellButton.Text = "Resizes with cells"
Dim FixedButton As Microsoft.Office.Tools.Excel.Controls.Button = _
Me.Controls.AddButton(Me.Range("B5", "C6"), "FixedButton")
FixedButton.Text = "Does not resize"
FixedButton.Placement = Excel.XlPlacement.xlFreeFloating
End Sub