Init() public static method

Inits the specified rock control.
public static Init ( IRockControl rockControl ) : void
rockControl IRockControl The rock control.
return void
Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MonthYearPicker"/> class.
 /// </summary>
 public MonthYearPicker()
     : base()
 {
     RockControlHelper.Init(this);
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockTextBox" /> class.
 /// </summary>
 public RockTextBox()
     : base()
 {
     RockControlHelper.Init(this);
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DateTimePicker"/> class.
 /// </summary>
 public DateTimePicker()
     : base()
 {
     RockControlHelper.Init(this);
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AddressControl"/> class.
 /// </summary>
 public AddressControl()
     : base()
 {
     RockControlHelper.Init(this);
 }
Example #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockRating" /> class.
 /// </summary>
 public RockRating()
     : base()
 {
     RockControlHelper.Init(this);
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PhoneNumberBox"/> class.
 /// </summary>
 public PhoneNumberBox()
     : base()
 {
     RockControlHelper.Init(this);
 }
Example #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ValueFilter"/> class.
 /// </summary>
 public ValueFilter()
     : base()
 {
     RockControlHelper.Init(this);
     RequiredFieldValidator = null;
 }