I'm developing a custom Web Part. Can I set the Web Part Zone always to the "Left Column" i.e., users cannot be able to drag and drop or add to any other column except the "Left Column". I tried adding the following lines to my web part onPreRender method:
this.ZoneID = "LeftColumn";
this.AllowZoneChange = false;
But this didn't work.
Any help is highly appreciated.
this.ZoneID = "LeftColumn";
this.AllowZoneChange = false;
But this didn't work.
Any help is highly appreciated.