예제 #1
0
 public void SetLayout(TableLayout aLayout)
 {
     Channel.SetLayout(aLayout);
 }
예제 #2
0
 public View()
 {
     Fields = new List <DataField>();
     Layout = new TableLayout(1, 2); //Default to one column and two rows
 }
예제 #3
0
 /// <summary>
 /// Set your client fields' layout.
 /// </summary>
 /// <param name="aLayout">The layout to apply for this client.</param>
 public void SetLayout(TableLayout aLayout)
 {
     Layout = aLayout;
     CheckConnection();
     iClient.SetLayout(aLayout);
 }