4D Write v16

WR GET STYLESHEET TAB

Home

 
4D Write v16
WR GET STYLESHEET TAB

WR GET STYLESHEET TAB 


 

WR GET STYLESHEET TAB ( area ; stylesheetNum ; tabNumber ; position ; justification ; fillCharacter ) 
Parameter Type   Description
area  Longint in 4D Write area
stylesheetNum  Longint in Stylesheet number
tabNumber  Longint in Tab number
position  Longint in Position of the tab
justification  Integer in Alignment value for the tab
fillCharacter  String in Selected fill character

The WR GET STYLESHEET TAB command allows you to retrieve the settings of the tab stop whose number was passed in tabNumber and which belongs to the style sheet whose number was passed in styleSheetNumber in the 4D Write area referenced by area.

To know the number of tabs in the style sheet, you can use: WR GET STYLESHEET INFO(area;styleSheetNumber;wr tab;applyTO), which will return the number of tab stops.

position is the distance from the left document margin to the tab stop, expressed in the current default units of the document.

alignment is the alignment type of the tab:

ValueText alignment
1 Left alignment
2Centered
3Right alignment
4Decimal
5Vertical separator

fillCharacter can be any character whose code is between 33 and 127. If fillCharacter is an empty string, then there is no fill character in the tab stop setting.

Example  

You want to change the fill characters for each style sheet tab stop, and then update your document.

 $StyleSheetNum:=WR Count(Area;wr nb stylesheets)
 For($i;1;$StyleSheetNum)
    $TabNum:=WR Get stylesheet text prop(Area;$i;wr tab;$Apply)
    If($TabNum#0)
       For($j;1;$TabNum)
          WR GET STYLESHEET TAB(Area;$i;$j;$Pos;$Justif;$FillChar)
          If($FillChar#"")
             WR SET STYLESHEET TAB(Area;$i;$j;$Pos;$Justif;Char(126))
          End if
       End for
       WR UPDATE STYLESHEET(Area;$i)
    End if
 End for



See also 

WR ADD STYLESHEET TAB
WR GET TAB
WR SET STYLESHEET TAB

 
PROPERTIES 

Product: 4D Write
Theme: WR Style Sheet
Number: 89441

 
HISTORY 

Created: 4D Write 6.5

 
ARTICLE USAGE

4D Write Language ( 4D Write v16)