PageSetupBorderAlwaysInFront Property |
Specifies where the page border is positioned relative to intersecting texts and objects.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic bool BorderAlwaysInFront { get; set; }
Public Property BorderAlwaysInFront As Boolean
Get
Set
public:
property bool BorderAlwaysInFront {
bool get ();
void set (bool value);
}
member BorderAlwaysInFront : bool with get, set
Property Value
Type:
Boolean
ExamplesCreates a page border that looks like a wide blue band at the top of the first page only.
Document doc = new Document();
PageSetup ps = doc.Sections[0].PageSetup;
ps.BorderAlwaysInFront = false;
ps.BorderDistanceFrom = PageBorderDistanceFrom.PageEdge;
ps.BorderAppliesTo = PageBorderAppliesTo.FirstPage;
Border border = ps.Borders[BorderType.Top];
border.LineStyle = LineStyle.Single;
border.LineWidth = 30;
border.Color = Color.Blue;
border.DistanceFromText = 0;
doc.Save(ArtifactsDir + "PageSetup.PageBorderProperties.doc");
See Also