AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Procesador de texto / Tipos de variables
  • Properties specific to docTabulation variables
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The docTabulation type is used to define the characteristics of a custom tabulation. This custom tabulation is associated with a paragraph included in a Word Processing document. You can define and change the characteristics of this tabulation using different WLanguage properties.
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Ejemplo
MyDoc is Document = MyDocControl
// Retrieve the first paragraph
Parag is docParagraph = MyDoc.Paragraph[1]
// Tabulation at 3 cm
Tabul is docTabulation
Tabul.Position = 30
// Add the tabulation to the custom tabulations of paragraph
Add(Parag.PageLayout.CustomTabulation, Tabul)
Propiedades

Properties specific to docTabulation variables

The following properties can be used to define the characteristics of docTabulation variables:
Property nameType usedEffect
FillCharacterCharacter string or constantFill character for the space before the tabulation.
This property can correspond to one of the following constants:
  • docTabulationCharacter None Empty character (no placeholder).
  • docTabulationPointCharacter Point.
  • docTabulationCharacterCenterPoint Point centered.
  • docTabulationUnderlinedCharacter Underline.
  • docTabulationUnionTextCharacter Line: Hyphen.
This property is set to an empty character by default.
PositionRealPosition of the tabulation (in millimeters) from the left paragraph border (0 by default).
TypeOptional Integer constantType of tabulation to add:
  • tabTypeBar A vertical bar will be displayed at tab level.
  • tabTypeCentre The center of the text will be aligned with the tab.
  • tabTypeDecimal The decimal separator is aligned with the tab.
  • tabTypeRight The right edge of the text will be aligned with the tab.
  • tabTypeLeft (Default): The left edge of the text will be aligned with the tab.
Versión mínima requerida
  • Versión 22
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local