Is there a way to have those properties/attributes to be set in XML. for now the only way I found is to set them in the code behind (I would like to have all the design to be done in the XML). I always get unknow attributes errors. A XML sample would be much appreciated..
pdf1.Sections[0].PageInfo.Margin.Left = 0;
pdf1.Sections[0].PageInfo.Margin.Right = 0;
pdf1.Sections[0].PageInfo.Margin.Top = 0;
pdf1.Sections[0].PageInfo.Margin.Bottom = 0;
and
(pdf1.Sections[2].GetObjectByID("fbTitle2") as FloatingBox).VerticalTextRotationAngle = VerticalTextRotationType.AntiClockWise;
thanks