|
BorderStyle
Returns/Sets the style of the Border for the Item. The value can be a combination of Enum values. The Enum includes each line individually, corner options (e.g. Top Left) and all values.
The ShowBorder property must be set for the Border to be printed.
Syntax Object.BorderStyle
Return Value qeFormatBorderStyleEnum
Notes For TextBlocks the default value is set to Use the Border style of the TextBlock's Template.
Example ' All four Border Lines:
qPrint.Document.DocumentItems(1).BorderStyle = fbsAll
' The same setting but adding the individual border line values:
qPrint.Document.DocumentItems(1).BorderStyle = fbsBottom + fbsTop + fbsRight + fbsLeft
' Use Template Border settings:
qPrint.Document.DocumentItems(1).BorderStyle = fbsUseTemplate
See Also: qcFormatBlock.BorderColor, qcFormatBlock.BorderShading, qcFormatBlock.BorderLine, qcFormatBlock.BorderMargin, qcFormatBlock.ShowBorder
|