Classe Word pour les export

Classe Word pour les export

Messagepar oguruma » 17 Oct 2005 à 12:33

Vous trouverez ci-dessous une classe Word permettant par exemple de d'exporter une vue dans un document word soit en forme de tableau ou de liste comme le montre l'exemple joint à ce post

[syntax="ls"]
Option Public
'%INCLUDE "olewordconst.lss"
'/cet include sera joint dans un autre post
'/ REM ne pas oublier de supprimer les variables qui ne passent pas ou réduire leur nom

Use "WORDCONST"
Public Class WordSession
Private WApp As Variant
Private Documents As Variant
Private Document As Variant
Private ActiveDocument As Variant
Private Selection As Variant
Private LastParagraph As Variant
Private NewRangeStart As Long

'//--------------------------------------------------------------------
'// Constructeur
'//--------------------------------------------------------------------
Sub new
Call CreateSession()
End Sub

'//--------------------------------------------------------------------
'// Accès aux propriétés
'//--------------------------------------------------------------------
Function getSelection() As Variant
getSelection=Selection
End Function

Function getDocument() As Variant
getDocument=Document
End Function

Function getDocuments() As Variant
getDocuments=Documents
End Function

Function getActiveDocument() As Variant
getActiveDocument=ActiveDocument
End Function

Function getApplication() As Variant
getApplication=WApp
End Function

'//--------------------------------------------------------------------
'// Initialisation des objets nécessaires
'//--------------------------------------------------------------------
Private Sub initSession
'// Ajout d'un document vièrge fondé sur le normal.dot

WApp.Documents.Add
Set Documents=Wapp.Documents
Set Document=Documents(1)
Set ActiveDocument=WApp.ActiveDocument
Set Selection=WApp.Selection
End Sub

'//--------------------------------------------------------------------
'// Ouverture d'une session MS Word
'//--------------------------------------------------------------------
Private Function CreateSession() As Variant
On Error Goto CreateSession
'// On tente de récupérer une session existante
'// Si aucune session on l'instancie sur une génération d'erreur
Set WApp = GetObject("", "Word.Application")
CreateSessionOk:
Call initSession
Exit Function
CreateSession:
Err = 0
Print "Création de la session MS Word"
'// Création de la session Word
Set WApp = CreateObject("Word.Application")
'// Si impossible de la créer on force l'erreur
If WApp Is Nothing Then
Error 9999,"Impossibile d'initialiser la session MS Word"
Resume EndCreationSession
End If
Print "Session MS Word initialisée "
'// On sort proprement pour initialiser les objets
Resume CreateSessionOK
EndCreationSession:
End Function

Sub setDisplayAlerts(toggle As Integer)
WApp.DisplayAlerts=toggle
End Sub

Sub setVisible(toggle As Integer)
WApp.Visible=toggle
End Sub

'//---------------------------------------------------------------------------
'// Ajout d'un texte
'//----------------------------------------------------------------------------
Sub AppendText(text As String, newline As Integer)
Selection.TypeText(text)
If newline Then Selection.TypeParagraph
End Sub

'//--------------------------------------
'// Nouvelle ligne
'//--------------------------------------
Sub NewLine(n As Integer)
Dim i As Integer
For i=1 To n
Selection.TypeParagraph
Next
End Sub

'//--------------------------------------
'// Saut page ou de section
'//--------------------------------------
Sub InsertBreak(t As Integer)
Call Selection.InsertBreak(t)
End Sub

'//----------------------------------------
'// Orientation de la page
'//---------------------------------------
'// wdOrientLandscape=1
'// wdOrientPortrait=0
Sub Orientation(o As Integer)
With Selection.PageSetup
.Orientation = o
End With
End Sub

'//---------------------------------
'// Style de texte
'//---------------------------------
Sub Style(sn As Variant)
Selection.Style = sn
End Sub

'/////////////////////////////////////
'// liste des couleurs colorIndex
'// wdAuto
'// wdBlack
'// wdBlue
'// wdBrightGreen
'// wdByAuthor
'// wdDarkBlue
'// wdDarkRed
'// wdDarkYellow
'// wdGray25
'// wdGray50
'// wdGreen
'// wdNoHighlight
'// wdPink
'// wdRed
'// wdTeal
'// wdTurquoise
'// wdViolet
'// wdWhite
'// wdYellow
'////////////////////////////////////////////

'//---------------------------------------
'// ColorIndex
'//---------------------------------------
Sub FontColorIndex(color As Integer)
Selection.Font.ColorIndex = color
End Sub

'//---------------------------------------
'// Fonte
'//---------------------------------------
Sub FontName(n As String)
Selection.Font.Name = n
End Sub

'//-----------------------------------------
'// Taille des caractères
'//-----------------------------------------
Sub FontSize (fz As Integer)
Selection.Font.Size = fz
End Sub

'//--------------------------------------------
'// Gras
'//---------------------------------------------
Sub FontBold(toggle As Integer)
Selection.Font.Bold = Toggle
End Sub

'//------------------------------------------------------
'// Souligné
'//-------------------------------------------------------
Sub FontUnderline(toggle As Integer)
'wdUnderlineDashHeavy
'wdUnderlineDashLongHeavy
'wdUnderlineDotDashHeavy
'wdUnderlineDotDotDashHeavy
'wdUnderlineDottedHeavy
'wdUnderlineNone
'wdUnderlineThick
'wdUnderlineWavyDouble
'wdUnderlineWords
'wdUnderlineDash
'wdUnderlineDashLong
'wdUnderlineDotDash
'wdUnderlineDotDotDash
'wdUnderlineDotted
'wdUnderlineDouble
'wdUnderlineSingle
'wdUnderlineWavy
'wdUnderlineWavyHeavy
Selection.Font.Underline = toggle
End Sub

'//--------------------------------------------
'// Italic
'//--------------------------------------------
Sub FontItalic(toggle As Integer)
Selection.Font.Italic = Toggle
End Sub

'//--------------------------------------------
'// Italic
'//--------------------------------------------
Sub FontColor(color As Integer)
Selection.Font.Italic = color
End Sub

'//--------------------------------------------------------------------------
'// Texte dans un paragraphe
'//--------------------------------------------------------------------------
Function AddTextToDoc(text As String) As Variant
Dim doc As Variant
Set doc=document
Set lastParagraph = doc.Paragraphs(doc.Paragraphs.Count).Range
newRangeStart = lastParagraph.End-1 ' This is where the new text will be placed
Call lastParagraph.InsertAfter(text)
End Function

'//------------------------------------------------------------------
'// Centrage du texte
'//-----------------------------------------------------------------
Sub AlignCenterParagraph
Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
End Sub

'//------------------------------------------------------------------
'// Cadrage à droite
'//-----------------------------------------------------------------
Sub AlignRightParagraph
Selection.ParagraphFormat.Alignment = wdAlignParagraphRight
End Sub

'//------------------------------------------------------------------
'// Cadrage à gauche
'//-----------------------------------------------------------------
Sub AlignLeftParagraph
Selection.ParagraphFormat.Alignment = wdAlignParagraphLeft
End Sub

'//-----------------------------------------------------------------
'// Création d'un tableau
'//-----------------------------------------------------------------
Sub CreateTable(rows As Integer, cols As Integer)
Call ActiveDocument.Tables.Add(Selection.Range,rows,cols)
End Sub

'//-----------------------------------------------------------------
'// Largeur des d'une colonne d'un tableau
'//-----------------------------------------------------------------
Sub SetTableColumnWidth(t As Integer, c As Integer, w As Single)
Dim table As Variant
Dim column As Variant
Set table=ActiveDocument.Tables(t)
Set column = table.Columns(c)
column.PreferredWidthType = 3
column.Width = WApp.CentimetersToPoints(w)
End Sub

'//-----------------------------------------------------------------
'// Hauteur d'une ligne d'un tableau
'//-----------------------------------------------------------------
Sub SetTableColumnHeight(t As Integer, r As Integer, h As Single)
'wdRowHeightAtLeast=1
'wdRowHeightAuto=0
'wdRowHeightExactly=2
Dim table As Variant
Dim row As Variant
Set table=ActiveDocument.Tables(t)
Set row = table.Rows(r)
Row.HeightRule = 2
Row.Height = WApp.CentimetersToPoints(h)
End Sub

'/////////////////////////////////////////
'// Unités de déplacement
'// wdLine
'// wdParagraph
'// wdWindow
'// wdScreen
'// wdCell
'// wdSentence
'// wdSection
'// wdStory
'/////////////////////////////////////////

'//----------------------------------------------------------------
'// Déplacement à droite
'//-----------------------------------------------------------------
Sub MoveRight(u As Integer, n As Integer, e As Integer)
Call Selection.MoveRight(u,n,e)
End Sub

'//----------------------------------------------------------------
'// Homekey
'//-----------------------------------------------------------------
Sub HomeKey(u As Integer,e As Integer)
Call Selection.HomeKey(u)
End Sub

'//----------------------------------------------------------------
'// EndKey
'//-----------------------------------------------------------------
Sub EndKey(u As Integer,e As Integer)
Call Selection.EndKey(u,e)
End Sub

'//--------------------------------------------------------------------
'// Déplacement à gauche
'//-------------------------------------------------------------------
Sub MoveLeft(u As Integer,n As Integer,e As Integer)
Call Selection.MoveLeft(u,n,e)
End Sub

'//--------------------------------------------------------------------
'// Déplacement vers la fin
'//-------------------------------------------------------------------
Sub MoveEnd(u As Integer,n As Integer)
Call Selection.MoveEnd(u,n)
End Sub

'//--------------------------------------------------------------------
'// Déplacement vers le début
'//-------------------------------------------------------------------
Sub MoveStart(u As Integer,n As Integer)
Call Selection.MoveStart(u,n)
End Sub

'//--------------------------------------------------------------------
'// Déplacement vers le bas
'//-------------------------------------------------------------------
Sub MoveDown(u As Integer,n As Integer,e As Integer)
Call Selection.MoveDown(u, n,e)
End Sub

'//--------------------------------------------------------------------
'// Déplacement vers le haut
'//-------------------------------------------------------------------
Sub MoveUp(u As Integer,n As Integer,e As Integer)
Call Selection.MoveUp(u, n, e)
End Sub

'//--------------------------------------------------------------------
'// Taquet de tabulation positionné
'//-------------------------------------------------------------------
Sub TabStop(p As Single)
Call Selection.ParagraphFormat.TabStops.Add(WApp.CentimetersToPoints(p))
End Sub

'//--------------------------------------------------------------------
'// Taquet de tabulation effacé
'//-------------------------------------------------------------------
Sub TabStopClear(p As Single)
Call Selection.ParagraphFormat.TabStops(WApp.CentimetersToPoints(2)).Clear
End Sub

'//--------------------------------------------------------------------
'// Enregistrement du document
'//-------------------------------------------------------------------
Sub saveAs(fn As String)
Activedocument.SaveAs fn
End Sub

Sub Save
ActiveDocument.Save
End Sub

'//--------------------------------------------------------------------
'// Fermeture d'une session MS Word
'//--------------------------------------------------------------------
Sub QuitSession
On Error Goto CreateSession
Set WApp = GetObject("", "Word.Application")
ExistSessionOK:
WApp.Quit
Print "Session MS Word terminée"
Exit Sub
CreateSession:
Err = 0
WApp = CreateObject("Word.Application")
If WApp Is Nothing Then
Error 9999,"Impossibile d'initialiser la session MS Word"
Resume EndCloseSession
End If
Resume ExistSessionOK
EndClosesession:
End Sub


End Class
[/syntax]

un exemple d'utilisation.... ne pas oublier de récupérer la liste des constantes que je viens de mettre à jour dans cette rubrique

[syntax="ls"]
Option Public
Use "ClassWord"

Sub Initialize
Dim word As WordSession
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim doc As notesdocument
On Error Goto erreur
Set db = session.Currentdatabase
Set view=db.Getview("By number")
Set word=New wordsession
Call word.setVisible(True)
Call word.setDisplayAlerts(False)
Call word.FontBold(True)
Call word.FontItalic(True)
Call word.FontSize(14)
Call word.FontColorIndex(wdBlue)
Call word.FontName("Tahoma")
Call word.FontUnderline(wdUnderlineDouble )
Call word.AlignCenterParagraph
Call word.AppendText("Liste des joueurs",True)
Call word.Style("Normal")
Call word.NewLine(2)
Call word.CreateTable(1,3)
Call word.SetTableColumnWidth(1,1,1)
Call word.SetTableColumnWidth(1,2,10)
Call word.SetTableColumnWidth(1,3,2)
Call word.MoveRight(wdCharacter,3,wdExtend)
Call word.FontBold(True)
Call word.FontColorIndex(wdDarkRed)
Call word.AppendText("N°",False)
Call word.MoveRight(wdCell,1,wdMove)
Call word.AppendText("Nom",False)
Call word.MoveRight(wdCell,1,wdMove)
Call word.AppendText("Position",False)
Call word.MoveRight(wdCell,1,wdMove)
Call word.MoveRight(wdCharacter,3,wdExtend)
Call word.FontBold(False)
Call word.FontSize(10)
Call word.FontName("Arial")
Call word.FontColorIndex(wdDarkBlue)
Set doc = view.GetFirstDocument
While Not doc Is Nothing
Call word.AppendText(Cstr(doc.number(0)),False)
Call word.MoveRight(wdCell,1,wdMove)
Call word.AppendText(doc.name(0),False)
Call word.MoveRight(wdCell,1,wdMove)
Call word.AppendText(doc.Position(0),False)
Set doc=view.getnextdocument(doc)
If Not doc Is Nothing Then Call word.MoveRight(wdCell,1,wdMove)
Wend
Call word.MoveDown(wdLine,1,wdMove)
Call word.Style("Normal")
Call word.NewLine(1)

'// Présentation avec tabulation
'// =======================

Call word.FontBold(True)
Call word.FontItalic(True)
Call word.FontSize(16)
Call word.FontColorIndex(wdBlue)
Call word.FontName("Verdana")
Call word.FontUnderline(wdUnderlineDouble )
Call word.AlignCenterParagraph
Call word.AppendText("Liste des joueurs",True)
Call word.Style("Normal")
Call word.NewLine(2)
Call word.TabStop(1.5)
Call word.TabStop(11)
Call word.FontBold(True)
Call word.FontColorIndex(wdDarkRed)
Call word.FontUnderline(wdUnderlineDouble )
Call word.FontName("Tahoma")
Call word.AppendText("N°" & Chr$(9) & "Nom" & Chr$(9) & "Position",True)
Call word.FontUnderline(wdUnderlineNone )
Call word.FontBold(False)
Call word.FontColorIndex(wdDarkBlue)
Call word.FontName("Arial")
Set doc = view.GetFirstDocument
While Not doc Is Nothing
Call word.Newline(1)
Call word.AppendText(Cstr(doc.number(0)) & Chr$(9) ,False)
Call word.AppendText(doc.name(0) & Chr$(9) ,False)
Call word.AppendText(doc.Position(0),False)
Set doc=view.getnextdocument(doc)
Wend
Call word.Newline(1)
Call word.TabStopClear(1.5)
Call word.TabStopClear(11)
Call word.Style("Normal")
Call word.SaveAs("c:\alpha\notes2word.doc")

'Call w.QuitSession
Exit Sub
erreur:
Msgbox "Err " & Err & " " & Error$ & " ligne " & Erl
Resume fin
fin:
End Sub
[/syntax]
Bien à vous

http://www.dominoarea.org/oguruma/

Les téléphones PORTABLES dans les TGV y en a MARRRE de ces voyageurs qui ne respectent pas les autres ! ARRET DES PORTABLES SVP - Merci

Fumeurs ! respectez les non fumeurs !!!
Fumeurs ! respectez la loi de février 2007 et les lieux publics !!! (ie. hall de gares)
Avatar de l’utilisateur
oguruma
Super V.I.P.
Super V.I.P.
 
Message(s) : 4086
Inscrit(e) le : 16 Déc 2004 à 08:50
Localisation : LILLE

Le fichiers des constantes OLE

Messagepar oguruma » 17 Oct 2005 à 12:36

Ci-dessous un fichier des constantes OLE
Attention : il faudra réduire certains noms de variables....


[syntax="ls"]
'===============================
'Word Constants
'===============================
PUBLIC CONST wd100Words=-4
PUBLIC CONST wd10Percent=-6
PUBLIC CONST wd10Sentences=-2
PUBLIC CONST wd20Sentences=-3
PUBLIC CONST wd24HourClock=21
PUBLIC CONST wd25Percent=-7
PUBLIC CONST wd500Words=-5
PUBLIC CONST wd50Percent=-8
PUBLIC CONST wd75Percent=-9
PUBLIC CONST wdActiveEndAdjustedPageNumber=1
PUBLIC CONST wdActiveEndPageNumber=3
PUBLIC CONST wdActiveEndSectionNumber=2
PUBLIC CONST wdAdjective=0
PUBLIC CONST wdAdjustFirstColumn=2
PUBLIC CONST wdAdjustNone=0
PUBLIC CONST wdAdjustProportional=1
PUBLIC CONST wdAdjustSameWidth=3
PUBLIC CONST wdAdverb=2
PUBLIC CONST wdAfrikaans=1078
PUBLIC CONST wdAlertsAll=-1
PUBLIC CONST wdAlertsMessageBox=-2
PUBLIC CONST wdAlertsNone=0
PUBLIC CONST wdAlignPageNumberCenter=1
PUBLIC CONST wdAlignPageNumberInside=3
PUBLIC CONST wdAlignPageNumberLeft=0
PUBLIC CONST wdAlignPageNumberOutside=4
PUBLIC CONST wdAlignPageNumberRight=2
PUBLIC CONST wdAlignParagraphCenter=1
PUBLIC CONST wdAlignParagraphDistribute=4
PUBLIC CONST wdAlignParagraphJustify=3
PUBLIC CONST wdAlignParagraphLeft=0
PUBLIC CONST wdAlignParagraphRight=2
PUBLIC CONST wdAlignRowCenter=1
PUBLIC CONST wdAlignRowLeft=0
PUBLIC CONST wdAlignRowRight=2
PUBLIC CONST wdAlignTabBar=4
PUBLIC CONST wdAlignTabCenter=1
PUBLIC CONST wdAlignTabDecimal=3
PUBLIC CONST wdAlignTabLeft=0
PUBLIC CONST wdAlignTabList=6
PUBLIC CONST wdAlignTabRight=2
PUBLIC CONST wdAlignVerticalBottom=3
PUBLIC CONST wdAlignVerticalCenter=1
PUBLIC CONST wdAlignVerticalJustify=2
PUBLIC CONST wdAlignVerticalTop=0
PUBLIC CONST wdAllAtOnce=1
PUBLIC CONST wdAllowOnlyComments=1
PUBLIC CONST wdAllowOnlyFormFields=2
PUBLIC CONST wdAllowOnlyRevisions=0
PUBLIC CONST wdAlwaysConvert=1
PUBLIC CONST wdAnagram=2
PUBLIC CONST wdAnimationBlinkingBackground=2
PUBLIC CONST wdAnimationLasVegasLights=1
PUBLIC CONST wdAnimationMarchingBlackAnts=4
PUBLIC CONST wdAnimationMarchingRedAnts=5
PUBLIC CONST wdAnimationNone=0
PUBLIC CONST wdAnimationShimmer=6
PUBLIC CONST wdAnimationSparkleText=3
PUBLIC CONST wdArabic=1025
PUBLIC CONST wdArgentina=54
PUBLIC CONST wdArtApples=1
PUBLIC CONST wdArtArchedScallops=97
PUBLIC CONST wdArtBabyPacifier=70
PUBLIC CONST wdArtBabyRattle=71
PUBLIC CONST wdArtBalloons3Colors=11
PUBLIC CONST wdArtBalloonsHotAir=12
PUBLIC CONST wdArtBasicBlackDashes=155
PUBLIC CONST wdArtBasicBlackDots=156
PUBLIC CONST wdArtBasicBlackSquares=154
PUBLIC CONST wdArtBasicThinLines=151
PUBLIC CONST wdArtBasicWhiteDashes=152
PUBLIC CONST wdArtBasicWhiteDots=147
PUBLIC CONST wdArtBasicWhiteSquares=153
PUBLIC CONST wdArtBasicWideInline=150
PUBLIC CONST wdArtBasicWideMidline=148
PUBLIC CONST wdArtBasicWideOutline=149
PUBLIC CONST wdArtBats=37
PUBLIC CONST wdArtBirds=102
PUBLIC CONST wdArtBirdsFlight=35
PUBLIC CONST wdArtCabins=72
PUBLIC CONST wdArtCakeSlice=3
PUBLIC CONST wdArtCandyCorn=4
PUBLIC CONST wdArtCelticKnotwork=99
PUBLIC CONST wdArtCertificateBanner=158
PUBLIC CONST wdArtChainLink=128
PUBLIC CONST wdArtChampagneBottle=6
PUBLIC CONST wdArtCheckedBarBlack=145
PUBLIC CONST wdArtCheckedBarColor=61
PUBLIC CONST wdArtCheckered=144
PUBLIC CONST wdArtChristmasTree=8
PUBLIC CONST wdArtCirclesLines=91
PUBLIC CONST wdArtCirclesRectangles=140
PUBLIC CONST wdArtClassicalWave=56
PUBLIC CONST wdArtClocks=27
PUBLIC CONST wdArtCompass=54
PUBLIC CONST wdArtConfetti=31
PUBLIC CONST wdArtConfettiGrays=115
PUBLIC CONST wdArtConfettiOutline=116
PUBLIC CONST wdArtConfettiStreamers=14
PUBLIC CONST wdArtConfettiWhite=117
PUBLIC CONST wdArtCornerTriangles=141
PUBLIC CONST wdArtCouponCutoutDashes=163
PUBLIC CONST wdArtCouponCutoutDots=164
PUBLIC CONST wdArtCrazyMaze=100
PUBLIC CONST wdArtCreaturesButterfly=32
PUBLIC CONST wdArtCreaturesFish=34
PUBLIC CONST wdArtCreaturesInsects=142
PUBLIC CONST wdArtCreaturesLadyBug=33
PUBLIC CONST wdArtCrossStitch=138
PUBLIC CONST wdArtCup=67
PUBLIC CONST wdArtDecoArch=89
PUBLIC CONST wdArtDecoArchColor=50
PUBLIC CONST wdArtDecoBlocks=90
PUBLIC CONST wdArtDiamondsGray=88
PUBLIC CONST wdArtDoubleD=55
PUBLIC CONST wdArtDoubleDiamonds=127
PUBLIC CONST wdArtEarth1=22
PUBLIC CONST wdArtEarth2=21
PUBLIC CONST wdArtEclipsingSquares1=101
PUBLIC CONST wdArtEclipsingSquares2=86
PUBLIC CONST wdArtEggsBlack=66
PUBLIC CONST wdArtFans=51
PUBLIC CONST wdArtFilm=52
PUBLIC CONST wdArtFirecrackers=28
PUBLIC CONST wdArtFlowersBlockPrint=49
PUBLIC CONST wdArtFlowersDaisies=48
PUBLIC CONST wdArtFlowersModern1=45
PUBLIC CONST wdArtFlowersModern2=44
PUBLIC CONST wdArtFlowersPansy=43
PUBLIC CONST wdArtFlowersRedRose=39
PUBLIC CONST wdArtFlowersRoses=38
PUBLIC CONST wdArtFlowersTeacup=103
PUBLIC CONST wdArtFlowersTiny=42
PUBLIC CONST wdArtGems=139
PUBLIC CONST wdArtGingerbreadMan=69
PUBLIC CONST wdArtGradient=122
PUBLIC CONST wdArtHandmade1=159
PUBLIC CONST wdArtHandmade2=160
PUBLIC CONST wdArtHeartBalloon=16
PUBLIC CONST wdArtHeartGray=68
PUBLIC CONST wdArtHearts=15
PUBLIC CONST wdArtHeebieJeebies=120
PUBLIC CONST wdArtHolly=41
PUBLIC CONST wdArtHouseFunky=73
PUBLIC CONST wdArtHypnotic=87
PUBLIC CONST wdArtIceCreamCones=5
PUBLIC CONST wdArtLightBulb=121
PUBLIC CONST wdArtLightning1=53
PUBLIC CONST wdArtLightning2=119
PUBLIC CONST wdArtMapPins=30
PUBLIC CONST wdArtMapleLeaf=81
PUBLIC CONST wdArtMapleMuffins=2
PUBLIC CONST wdArtMarquee=146
PUBLIC CONST wdArtMarqueeToothed=131
PUBLIC CONST wdArtMoons=125
PUBLIC CONST wdArtMosaic=118
PUBLIC CONST wdArtMusicNotes=79
PUBLIC CONST wdArtNorthwest=104
PUBLIC CONST wdArtOvals=126
PUBLIC CONST wdArtPackages=26
PUBLIC CONST wdArtPalmsBlack=80
PUBLIC CONST wdArtPalmsColor=10
PUBLIC CONST wdArtPaperClips=82
PUBLIC CONST wdArtPapyrus=92
PUBLIC CONST wdArtPartyFavor=13
PUBLIC CONST wdArtPartyGlass=7
PUBLIC CONST wdArtPencils=25
PUBLIC CONST wdArtPeople=84
PUBLIC CONST wdArtPeopleHats=23
PUBLIC CONST wdArtPeopleWaving=85
PUBLIC CONST wdArtPoinsettias=40
PUBLIC CONST wdArtPostageStamp=135
PUBLIC CONST wdArtPumpkin1=65
PUBLIC CONST wdArtPushPinNote1=63
PUBLIC CONST wdArtPushPinNote2=64
PUBLIC CONST wdArtPyramids=113
PUBLIC CONST wdArtPyramidsAbove=114
PUBLIC CONST wdArtQuadrants=60
PUBLIC CONST wdArtRings=29
PUBLIC CONST wdArtSafari=98
PUBLIC CONST wdArtSawtooth=133
PUBLIC CONST wdArtSawtoothGray=134
PUBLIC CONST wdArtScaredCat=36
PUBLIC CONST wdArtSeattle=78
PUBLIC CONST wdArtShadowedSquares=57
PUBLIC CONST wdArtSharksTeeth=132
PUBLIC CONST wdArtShorebirdTracks=83
PUBLIC CONST wdArtSkyrocket=77
PUBLIC CONST wdArtSnowflakeFancy=76
PUBLIC CONST wdArtSnowflakes=75
PUBLIC CONST wdArtSombrero=24
PUBLIC CONST wdArtSouthwest=105
PUBLIC CONST wdArtStars=19
PUBLIC CONST wdArtStars3D=17
PUBLIC CONST wdArtStarsBlack=74
PUBLIC CONST wdArtStarsShadowed=18
PUBLIC CONST wdArtStarsTop=157
PUBLIC CONST wdArtSun=20
PUBLIC CONST wdArtSwirligig=62
PUBLIC CONST wdArtTornPaper=161
PUBLIC CONST wdArtTornPaperBlack=162
PUBLIC CONST wdArtTrees=9
PUBLIC CONST wdArtTriangleParty=123
PUBLIC CONST wdArtTriangles=129
PUBLIC CONST wdArtTribal1=130
PUBLIC CONST wdArtTribal2=109
PUBLIC CONST wdArtTribal3=108
PUBLIC CONST wdArtTribal4=107
PUBLIC CONST wdArtTribal5=110
PUBLIC CONST wdArtTribal6=106
PUBLIC CONST wdArtTwistedLines1=58
PUBLIC CONST wdArtTwistedLines2=124
PUBLIC CONST wdArtVine=47
PUBLIC CONST wdArtWaveline=59
PUBLIC CONST wdArtWeavingAngles=96
PUBLIC CONST wdArtWeavingBraid=94
PUBLIC CONST wdArtWeavingRibbon=95
PUBLIC CONST wdArtWeavingStrips=136
PUBLIC CONST wdArtWhiteFlowers=46
PUBLIC CONST wdArtWoodwork=93
PUBLIC CONST wdArtXIllusions=111
PUBLIC CONST wdArtZanyTriangles=112
PUBLIC CONST wdArtZigZag=137
PUBLIC CONST wdArtZigZagStitch=143
PUBLIC CONST wdAskToConvert=3
PUBLIC CONST wdAskToNotConvert=2
PUBLIC CONST wdAtEndOfRowMarker=31
PUBLIC CONST wdAttachedTemplate=2
PUBLIC CONST wdAuto=0
PUBLIC CONST wdAutoClose=3
PUBLIC CONST wdAutoExec=0
PUBLIC CONST wdAutoExit=4
PUBLIC CONST wdAutoNew=1
PUBLIC CONST wdAutoOpen=2
PUBLIC CONST wdAutoPosition=0
PUBLIC CONST wdAutoRecoverPath=5
PUBLIC CONST wdAutoVersionOff=0
PUBLIC CONST wdAutoVersionOnClose=1
PUBLIC CONST wdAutomaticUpdate=3
PUBLIC CONST wdBackward=-1073741823
PUBLIC CONST wdBaselineAlignAuto=4
PUBLIC CONST wdBaselineAlignBaseline=2
PUBLIC CONST wdBaselineAlignCenter=1
PUBLIC CONST wdBaselineAlignFarEast50=3
PUBLIC CONST wdBaselineAlignTop=0
PUBLIC CONST wdBasque=1069
PUBLIC CONST wdBelgianDutch=2067
PUBLIC CONST wdBelgianFrench=2060
PUBLIC CONST wdBeneathText=1
PUBLIC CONST wdBlack=1
PUBLIC CONST wdBlue=2
PUBLIC CONST wdBorderArtPath=19
PUBLIC CONST wdBorderBottom=-3
PUBLIC CONST wdBorderDiagonalDown=-7
PUBLIC CONST wdBorderDiagonalUp=-8
PUBLIC CONST wdBorderDistanceFromPageEdge=1
PUBLIC CONST wdBorderDistanceFromText=0
PUBLIC CONST wdBorderHorizontal=-5
PUBLIC CONST wdBorderLeft=-2
PUBLIC CONST wdBorderRight=-4
PUBLIC CONST wdBorderTop=-1
PUBLIC CONST wdBorderVertical=-6
PUBLIC CONST wdBottomOfPage=0
PUBLIC CONST wdBrazil=55
PUBLIC CONST wdBrazilianPortuguese=1046
PUBLIC CONST wdBrightGreen=4
PUBLIC CONST wdBrowseComment=3
PUBLIC CONST wdBrowseEdit=10
PUBLIC CONST wdBrowseEndnote=5
PUBLIC CONST wdBrowseField=6
PUBLIC CONST wdBrowseFind=11
PUBLIC CONST wdBrowseFootnote=4
PUBLIC CONST wdBrowseGoTo=12
PUBLIC CONST wdBrowseGraphic=8
PUBLIC CONST wdBrowseHeading=9
PUBLIC CONST wdBrowsePage=1
PUBLIC CONST wdBrowseSection=2
PUBLIC CONST wdBrowseTable=7
PUBLIC CONST wdBulgarian=1026
PUBLIC CONST wdBulletGallery=1
PUBLIC CONST wdByAuthor=-1
PUBLIC CONST wdByelorussian=1059
PUBLIC CONST wdCalculationText=5
PUBLIC CONST wdCanada=2
PUBLIC CONST wdCancelDisabled=0
PUBLIC CONST wdCancelInterrupt=1
PUBLIC CONST wdCancelPublisher=0
PUBLIC CONST wdCapsLock=21
PUBLIC CONST wdCaptionEquation=-3
PUBLIC CONST wdCaptionFigure=-1
PUBLIC CONST wdCaptionNumberStyleArabic=0
PUBLIC CONST wdCaptionNumberStyleArabicFullWidth=14
PUBLIC CONST wdCaptionNumberStyleChosung=25
PUBLIC CONST wdCaptionNumberStyleGanada=24
PUBLIC CONST wdCaptionNumberStyleHanjaRead=41
PUBLIC CONST wdCaptionNumberStyleHanjaReadDigit=42
PUBLIC CONST wdCaptionNumberStyleKanji=10
PUBLIC CONST wdCaptionNumberStyleKanjiDigit=11
PUBLIC CONST wdCaptionNumberStyleKanjiTraditional=16
PUBLIC CONST wdCaptionNumberStyleLowercaseLetter=4
PUBLIC CONST wdCaptionNumberStyleLowercaseRoman=2
PUBLIC CONST wdCaptionNumberStyleNumberInCircle=18
PUBLIC CONST wdCaptionNumberStyleSimpChinNum2=38
PUBLIC CONST wdCaptionNumberStyleSimpChinNum3=39
PUBLIC CONST wdCaptionNumberStyleTradChinNum2=34
PUBLIC CONST wdCaptionNumberStyleTradChinNum3=35
PUBLIC CONST wdCaptionNumberStyleUppercaseLetter=3
PUBLIC CONST wdCaptionNumberStyleUppercaseRoman=1
PUBLIC CONST wdCaptionNumberStyleZodiac1=30
PUBLIC CONST wdCaptionNumberStyleZodiac2=31
PUBLIC CONST wdCaptionPositionAbove=0
PUBLIC CONST wdCaptionPositionBelow=1
PUBLIC CONST wdCaptionTable=-2
PUBLIC CONST wdCatalan=1027
PUBLIC CONST wdCatalog=3
PUBLIC CONST wdCell=12
PUBLIC CONST wdCellAlignVerticalBottom=3
PUBLIC CONST wdCellAlignVerticalCenter=1
PUBLIC CONST wdCellAlignVerticalTop=0
PUBLIC CONST wdCenterClockwise=7
PUBLIC CONST wdCenterLandscape=4
PUBLIC CONST wdCenterPortrait=1
PUBLIC CONST wdCentimeters=1
PUBLIC CONST wdChangeAttributes=5
PUBLIC CONST wdCharacter=1
PUBLIC CONST wdCharacterFormatting=13
PUBLIC CONST wdChile=56
PUBLIC CONST wdChina=86
PUBLIC CONST wdCollapseEnd=0
PUBLIC CONST wdCollapseStart=1
PUBLIC CONST wdColumn=9
PUBLIC CONST wdColumnBreak=8
PUBLIC CONST wdCommentsStory=4
PUBLIC CONST wdContentText=-1
PUBLIC CONST wdContinueDisabled=0
PUBLIC CONST wdContinueList=2
PUBLIC CONST wdConvMailMergeEsc=6
PUBLIC CONST wdCreatorCode=1297307460
PUBLIC CONST wdCroatian=1050
PUBLIC CONST wdCurrencyCode=20
PUBLIC CONST wdCurrentDateText=3
PUBLIC CONST wdCurrentFolderPath=14
PUBLIC CONST wdCurrentTimeText=4
PUBLIC CONST wdCursorIBeam=1
PUBLIC CONST wdCursorNormal=2
PUBLIC CONST wdCursorNorthwestArrow=3
PUBLIC CONST wdCursorWait=0
PUBLIC CONST wdCustomLabelA4=2
PUBLIC CONST wdCustomLabelA4LS=3
PUBLIC CONST wdCustomLabelA5=4
PUBLIC CONST wdCustomLabelA5LS=5
PUBLIC CONST wdCustomLabelB5=6
PUBLIC CONST wdCustomLabelFanfold=8
PUBLIC CONST wdCustomLabelLetter=0
PUBLIC CONST wdCustomLabelLetterLS=1
PUBLIC CONST wdCustomLabelMini=7
PUBLIC CONST wdCzech=1029
PUBLIC CONST wdDanish=1030
PUBLIC CONST wdDarkBlue=9
PUBLIC CONST wdDarkRed=13
PUBLIC CONST wdDarkYellow=14
PUBLIC CONST wdDataSource=5
PUBLIC CONST wdDateSeparator=25
PUBLIC CONST wdDateText=2
PUBLIC CONST wdDecimalSeparator=18
PUBLIC CONST wdDefaultFirstRecord=1
PUBLIC CONST wdDefaultLastRecord=-16
PUBLIC CONST wdDeleteCellsEntireColumn=3
PUBLIC CONST wdDeleteCellsEntireRow=2
PUBLIC CONST wdDeleteCellsShiftLeft=0
PUBLIC CONST wdDeleteCellsShiftUp=1
PUBLIC CONST wdDeletedTextMarkCaret=2
PUBLIC CONST wdDeletedTextMarkHidden=0
PUBLIC CONST wdDeletedTextMarkPound=3
PUBLIC CONST wdDeletedTextMarkStrikeThrough=1
PUBLIC CONST wdDenmark=45
PUBLIC CONST wdDialogConnect=420
PUBLIC CONST wdDialogControlRun=235
PUBLIC CONST wdDialogConvertObject=392
PUBLIC CONST wdDialogCopyFile=300
PUBLIC CONST wdDialogCreateAutoText=872
PUBLIC CONST wdDialogDocumentStatistics=78
PUBLIC CONST wdDialogDrawAlign=634
PUBLIC CONST wdDialogDrawSnapToGrid=633
PUBLIC CONST wdDialogEditAutoText=985
PUBLIC CONST wdDialogEditCreatePublisher=732
PUBLIC CONST wdDialogEditFind=112
PUBLIC CONST wdDialogEditGoTo=896
PUBLIC CONST wdDialogEditGoToOld=811
PUBLIC CONST wdDialogEditLinks=124
PUBLIC CONST wdDialogEditObject=125
PUBLIC CONST wdDialogEditPasteSpecial=111
PUBLIC CONST wdDialogEditPublishOptions=735
PUBLIC CONST wdDialogEditReplace=117
PUBLIC CONST wdDialogEditSubscribeOptions=736
PUBLIC CONST wdDialogEditSubscribeTo=733
PUBLIC CONST wdDialogEditTOACategory=625
PUBLIC CONST wdDialogFileDocumentLayout=178
PUBLIC CONST wdDialogFileFind=99
PUBLIC CONST wdDialogFileMacCustomPageSetupGX=737
PUBLIC CONST wdDialogFileMacPageSetup=685
PUBLIC CONST wdDialogFileMacPageSetupGX=444
PUBLIC CONST wdDialogFileNew=79
PUBLIC CONST wdDialogFileOpen=80
PUBLIC CONST wdDialogFilePageSetup=178
PUBLIC CONST wdDialogFilePageSetupTabCharsLines=150004
PUBLIC CONST wdDialogFilePageSetupTabLayout=150003
PUBLIC CONST wdDialogFilePageSetupTabMargins=150000
PUBLIC CONST wdDialogFilePageSetupTabPaperSize=150001
PUBLIC CONST wdDialogFilePageSetupTabPaperSource=150002
PUBLIC CONST wdDialogFilePrint=88
PUBLIC CONST wdDialogFilePrintOneCopy=445
PUBLIC CONST wdDialogFilePrintSetup=97
PUBLIC CONST wdDialogFileRoutingSlip=624
PUBLIC CONST wdDialogFileSaveAs=84
PUBLIC CONST wdDialogFileSaveVersion=1007
PUBLIC CONST wdDialogFileSummaryInfo=86
PUBLIC CONST wdDialogFileVersions=945
PUBLIC CONST wdDialogFontSubstitution=581
PUBLIC CONST wdDialogFormFieldOptions=353
PUBLIC CONST wdDialogFormatAddrFonts=103
PUBLIC CONST wdDialogFormatBordersAndShading=189
PUBLIC CONST wdDialogFormatBordersAndShadingTabBorders=700000
PUBLIC CONST wdDialogFormatBordersAndShadingTabPageBorder=700001
PUBLIC CONST wdDialogFormatBordersAndShadingTabShading=700002
PUBLIC CONST wdDialogFormatBulletsAndNumbering=824
PUBLIC CONST wdDialogFormatBulletsAndNumberingTabBulleted=1500000
PUBLIC CONST wdDialogFormatBulletsAndNumberingTabNumbered=1500001
PUBLIC CONST wdDialogFormatBulletsAndNumberingTabOutlineNumbered=1500002
PUBLIC CONST wdDialogFormatCallout=610
PUBLIC CONST wdDialogFormatChangeCase=322
PUBLIC CONST wdDialogFormatColumns=177
PUBLIC CONST wdDialogFormatDefineStyleBorders=185
PUBLIC CONST wdDialogFormatDefineStyleFont=181
PUBLIC CONST wdDialogFormatDefineStyleFrame=184
PUBLIC CONST wdDialogFormatDefineStyleLang=186
PUBLIC CONST wdDialogFormatDefineStylePara=182
PUBLIC CONST wdDialogFormatDefineStyleTabs=183
PUBLIC CONST wdDialogFormatDrawingObject=960
PUBLIC CONST wdDialogFormatDrawingObjectTabColorsAndLines=1200000
PUBLIC CONST wdDialogFormatDrawingObjectTabPicture=1200004
PUBLIC CONST wdDialogFormatDrawingObjectTabPosition=1200002
PUBLIC CONST wdDialogFormatDrawingObjectTabSize=1200001
PUBLIC CONST wdDialogFormatDrawingObjectTabTextbox=1200005
PUBLIC CONST wdDialogFormatDrawingObjectTabWrapping=1200003
PUBLIC CONST wdDialogFormatDropCap=488
PUBLIC CONST wdDialogFormatFont=174
PUBLIC CONST wdDialogFormatFontTabAnimation=600002
PUBLIC CONST wdDialogFormatFontTabCharacterSpacing=600001
PUBLIC CONST wdDialogFormatFontTabFont=600000
PUBLIC CONST wdDialogFormatFrame=190
PUBLIC CONST wdDialogFormatPageNumber=298
PUBLIC CONST wdDialogFormatParagraph=175
PUBLIC CONST wdDialogFormatParagraphTabIndentsAndSpacing=1000000
PUBLIC CONST wdDialogFormatParagraphTabTeisai=1000002
PUBLIC CONST wdDialogFormatParagraphTabTextFlow=1000001
PUBLIC CONST wdDialogFormatPicture=187
PUBLIC CONST wdDialogFormatRetAddrFonts=221
PUBLIC CONST wdDialogFormatSectionLayout=176
PUBLIC CONST wdDialogFormatStyle=180
PUBLIC CONST wdDialogFormatStyleGallery=505
PUBLIC CONST wdDialogFormatTabs=179
PUBLIC CONST wdDialogHelpAbout=9
PUBLIC CONST wdDialogHelpWordPerfectHelp=10
PUBLIC CONST wdDialogHelpWordPerfectHelpOptions=511
PUBLIC CONST wdDialogInsertAddCaption=402
PUBLIC CONST wdDialogInsertAutoCaption=359
PUBLIC CONST wdDialogInsertBookmark=168
PUBLIC CONST wdDialogInsertBreak=159
PUBLIC CONST wdDialogInsertCaption=357
PUBLIC CONST wdDialogInsertCaptionNumbering=358
PUBLIC CONST wdDialogInsertCrossReference=367
PUBLIC CONST wdDialogInsertDatabase=341
PUBLIC CONST wdDialogInsertDateTime=165
PUBLIC CONST wdDialogInsertField=166
PUBLIC CONST wdDialogInsertFile=164
PUBLIC CONST wdDialogInsertFootnote=370
PUBLIC CONST wdDialogInsertFormField=483
PUBLIC CONST wdDialogInsertIndex=170
PUBLIC CONST wdDialogInsertIndexAndTables=473
PUBLIC CONST wdDialogInsertIndexAndTablesTabIndex=400000
PUBLIC CONST wdDialogInsertIndexAndTablesTabTableOfAuthorities=400003
PUBLIC CONST wdDialogInsertIndexAndTablesTabTableOfContents=400001
PUBLIC CONST wdDialogInsertIndexAndTablesTabTableOfFigures=400002
PUBLIC CONST wdDialogInsertMergeField=167
PUBLIC CONST wdDialogInsertObject=172
PUBLIC CONST wdDialogInsertPageNumbers=294
PUBLIC CONST wdDialogInsertPicture=163
PUBLIC CONST wdDialogInsertSubdocument=583
PUBLIC CONST wdDialogInsertSymbol=162
PUBLIC CONST wdDialogInsertSymbolTabSpecialCharacters=200001
PUBLIC CONST wdDialogInsertSymbolTabSymbols=200000
PUBLIC CONST wdDialogInsertTableOfAuthorities=471
PUBLIC CONST wdDialogInsertTableOfContents=171
PUBLIC CONST wdDialogInsertTableOfFigures=472
PUBLIC CONST wdDialogLetterWizard=821
PUBLIC CONST wdDialogLetterWizardTabLetterFormat=1600000
PUBLIC CONST wdDialogLetterWizardTabOtherElements=1600002
PUBLIC CONST wdDialogLetterWizardTabRecipientInfo=1600001
PUBLIC CONST wdDialogLetterWizardTabSenderInfo=1600003
PUBLIC CONST wdDialogListCommands=723
PUBLIC CONST wdDialogMailMerge=676
PUBLIC CONST wdDialogMailMergeCheck=677
PUBLIC CONST wdDialogMailMergeCreateDataSource=642
PUBLIC CONST wdDialogMailMergeCreateHeaderSource=643
PUBLIC CONST wdDialogMailMergeFindRecord=569
PUBLIC CONST wdDialogMailMergeHelper=680
PUBLIC CONST wdDialogMailMergeInsertAsk=4047
PUBLIC CONST wdDialogMailMergeInsertFillIn=4048
PUBLIC CONST wdDialogMailMergeInsertIf=4049
PUBLIC CONST wdDialogMailMergeInsertNextIf=4053
PUBLIC CONST wdDialogMailMergeInsertSet=4054
PUBLIC CONST wdDialogMailMergeInsertSkipIf=4055
PUBLIC CONST wdDialogMailMergeOpenDataSource=81
PUBLIC CONST wdDialogMailMergeOpenHeaderSource=82
PUBLIC CONST wdDialogMailMergeQueryOptions=681
PUBLIC CONST wdDialogMailMergeUseAddressBook=779
PUBLIC CONST wdDialogMarkCitation=463
PUBLIC CONST wdDialogMarkIndexEntry=169
PUBLIC CONST wdDialogMarkTableOfContentsEntry=442
PUBLIC CONST wdDialogNewToolbar=586
PUBLIC CONST wdDialogNoteOptions=373
PUBLIC CONST wdDialogNoteOptionsTabAllEndnotes=300001
PUBLIC CONST wdDialogNoteOptionsTabAllFootnotes=300000
PUBLIC CONST wdDialogOrganizer=222
PUBLIC CONST wdDialogOrganizerTabAutoText=500001
PUBLIC CONST wdDialogOrganizerTabCommandBars=500002
PUBLIC CONST wdDialogOrganizerTabMacros=500003
PUBLIC CONST wdDialogOrganizerTabStyles=500000
PUBLIC CONST wdDialogTableAutoFormat=563
PUBLIC CONST wdDialogTableDeleteCells=133
PUBLIC CONST wdDialogTableFormatCell=612
PUBLIC CONST wdDialogTableFormula=348
PUBLIC CONST wdDialogTableInsertCells=130
PUBLIC CONST wdDialogTableInsertRow=131
PUBLIC CONST wdDialogTableInsertTable=129
PUBLIC CONST wdDialogTableSort=199
PUBLIC CONST wdDialogTableSplitCells=137
PUBLIC CONST wdDialogTableToText=128
PUBLIC CONST wdDialogTextToTable=127
PUBLIC CONST wdDialogToolsAcceptRejectChanges=506
PUBLIC CONST wdDialogToolsAdvancedSettings=206
PUBLIC CONST wdDialogToolsAutoCorrect=378
PUBLIC CONST wdDialogToolsAutoCorrectExceptions=762
PUBLIC CONST wdDialogToolsAutoCorrectExceptionsTabFirstLetter=1400000
PUBLIC CONST wdDialogToolsAutoCorrectExceptionsTabHangulAndAlphabet=1400002
PUBLIC CONST wdDialogToolsAutoCorrectExceptionsTabInitialCaps=1400001
PUBLIC CONST wdDialogToolsAutoManager=915
PUBLIC CONST wdDialogToolsAutoManagerTabAutoCorrect=1700000
PUBLIC CONST wdDialogToolsAutoManagerTabAutoFormat=1700003
PUBLIC CONST wdDialogToolsAutoManagerTabAutoFormatAsYouType=1700001
PUBLIC CONST wdDialogToolsAutoManagerTabAutoText=1700002
PUBLIC CONST wdDialogToolsAutoSummarize=874
PUBLIC CONST wdDialogToolsBulletsNumbers=196
PUBLIC CONST wdDialogToolsCompareDocuments=198
PUBLIC CONST wdDialogToolsCreateDirectory=833
PUBLIC CONST wdDialogToolsCreateEnvelope=173
PUBLIC CONST wdDialogToolsCreateLabels=489
PUBLIC CONST wdDialogToolsCustomize=152
PUBLIC CONST wdDialogToolsCustomizeKeyboard=432
PUBLIC CONST wdDialogToolsCustomizeMenuBar=615
PUBLIC CONST wdDialogToolsCustomizeMenus=433
PUBLIC CONST wdDialogToolsEnvelopesAndLabels=607
PUBLIC CONST wdDialogToolsEnvelopesAndLabelsTabEnvelopes=800000
PUBLIC CONST wdDialogToolsEnvelopesAndLabelsTabLabels=800001
PUBLIC CONST wdDialogToolsHighlightChanges=197
PUBLIC CONST wdDialogToolsHyphenation=195
PUBLIC CONST wdDialogToolsLanguage=188
PUBLIC CONST wdDialogToolsMacro=215
PUBLIC CONST wdDialogToolsMacroRecord=214
PUBLIC CONST wdDialogToolsManageFields=631
PUBLIC CONST wdDialogToolsMergeDocuments=435
PUBLIC CONST wdDialogToolsOptions=974
PUBLIC CONST wdDialogToolsOptionsAutoFormat=959
PUBLIC CONST wdDialogToolsOptionsAutoFormatAsYouType=778
PUBLIC CONST wdDialogToolsOptionsCompatibility=525
PUBLIC CONST wdDialogToolsOptionsEdit=224
PUBLIC CONST wdDialogToolsOptionsFileLocations=225
PUBLIC CONST wdDialogToolsOptionsFuzzy=790
PUBLIC CONST wdDialogToolsOptionsGeneral=203
PUBLIC CONST wdDialogToolsOptionsPrint=208
PUBLIC CONST wdDialogToolsOptionsSave=209
PUBLIC CONST wdDialogToolsOptionsSpellingAndGrammar=211
PUBLIC CONST wdDialogToolsOptionsTabCompatibility=525
PUBLIC CONST wdDialogToolsOptionsTabEdit=224
PUBLIC CONST wdDialogToolsOptionsTabFileLocations=225
PUBLIC CONST wdDialogToolsOptionsTabFuzzy=790
PUBLIC CONST wdDialogToolsOptionsTabGeneral=203
PUBLIC CONST wdDialogToolsOptionsTabHangulHanjaConversion=786
PUBLIC CONST wdDialogToolsOptionsTabPrint=208
PUBLIC CONST wdDialogToolsOptionsTabProofread=211
PUBLIC CONST wdDialogToolsOptionsTabSave=209
PUBLIC CONST wdDialogToolsOptionsTabTrackChanges=386
PUBLIC CONST wdDialogToolsOptionsTabTypography=739
PUBLIC CONST wdDialogToolsOptionsTabUserInfo=213
PUBLIC CONST wdDialogToolsOptionsTabView=204
PUBLIC CONST wdDialogToolsOptionsTrackChanges=386
PUBLIC CONST wdDialogToolsOptionsTypography=739
PUBLIC CONST wdDialogToolsOptionsUserInfo=213
PUBLIC CONST wdDialogToolsOptionsView=204
PUBLIC CONST wdDialogToolsProtectDocument=503
PUBLIC CONST wdDialogToolsProtectSection=578
PUBLIC CONST wdDialogToolsRevisions=197
PUBLIC CONST wdDialogToolsSpellingAndGrammar=828
PUBLIC CONST wdDialogToolsTemplates=87
PUBLIC CONST wdDialogToolsThesaurus=194
PUBLIC CONST wdDialogToolsUnprotectDocument=521
PUBLIC CONST wdDialogToolsWordCount=228
PUBLIC CONST wdDialogUpdateTOC=331
PUBLIC CONST wdDialogViewZoom=577
PUBLIC CONST wdDialogWindowActivate=220
PUBLIC CONST wdDoNotSaveChanges=0
PUBLIC CONST wdDocumentEmail=2
PUBLIC CONST wdDocumentLetter=1
PUBLIC CONST wdDocumentNotSpecified=0
PUBLIC CONST wdDocumentsPath=0
PUBLIC CONST wdDontBalanceSingleByteDoubleByteWidth=16
PUBLIC CONST wdDontULTrailSpace=15
PUBLIC CONST wdDropMargin=2
PUBLIC CONST wdDropNone=0
PUBLIC CONST wdDropNormal=1
PUBLIC CONST wdDutch=1043
PUBLIC CONST wdEmphasisMarkNone=0
PUBLIC CONST wdEmphasisMarkOverComma=2
PUBLIC CONST wdEmphasisMarkOverSolidCircle=1
PUBLIC CONST wdEmphasisMarkOverWhiteCircle=3
PUBLIC CONST wdEmphasisMarkUnderSolidCircle=4
PUBLIC CONST wdEndOfDocument=1
PUBLIC CONST wdEndOfRangeColumnNumber=17
PUBLIC CONST wdEndOfRangeRowNumber=14
PUBLIC CONST wdEndOfSection=0
PUBLIC CONST wdEndnoteNumber=6
PUBLIC CONST wdEndnoteNumberFormatted=17
PUBLIC CONST wdEndnotesStory=3
PUBLIC CONST wdEnglishAUS=3081
PUBLIC CONST wdEnglishCanadian=4105
PUBLIC CONST wdEnglishNewZealand=5129
PUBLIC CONST wdEnglishSouthAfrica=7177
PUBLIC CONST wdEnglishUK=2057
PUBLIC CONST wdEnglishUS=1033
PUBLIC CONST wdEntireCaption=2
PUBLIC CONST wdEnvelopes=2
PUBLIC CONST wdEstonian=1061
PUBLIC CONST wdEvenPagesFooterStory=8
PUBLIC CONST wdEvenPagesHeaderStory=6
PUBLIC CONST wdExactOnTop=28
PUBLIC CONST wdExpandShiftReturn=14
PUBLIC CONST wdExtend=1
PUBLIC CONST wdFarEastLineBreakLevelCustom=2
PUBLIC CONST wdFarEastLineBreakLevelNormal=0
PUBLIC CONST wdFarEastLineBreakLevelStrict=1
PUBLIC CONST wdFarsi=1065
PUBLIC CONST wdFieldAddin=81
PUBLIC CONST wdFieldAdvance=84
PUBLIC CONST wdFieldAsk=38
PUBLIC CONST wdFieldAuthor=17
PUBLIC CONST wdFieldAutoNum=54
PUBLIC CONST wdFieldAutoNumLegal=53
PUBLIC CONST wdFieldAutoNumOutline=52
PUBLIC CONST wdFieldAutoText=79
PUBLIC CONST wdFieldAutoTextList=89
PUBLIC CONST wdFieldBarCode=63
PUBLIC CONST wdFieldComments=19
PUBLIC CONST wdFieldCompare=80
PUBLIC CONST wdFieldCreateDate=21
PUBLIC CONST wdFieldDDE=45
PUBLIC CONST wdFieldDDEAuto=46
PUBLIC CONST wdFieldData=40
PUBLIC CONST wdFieldDatabase=78
PUBLIC CONST wdFieldDate=31
PUBLIC CONST wdFieldDocProperty=85
PUBLIC CONST wdFieldDocVariable=64
PUBLIC CONST wdFieldEditTime=25
PUBLIC CONST wdFieldEmbed=58
PUBLIC CONST wdFieldEmpty=-1
PUBLIC CONST wdFieldExpression=34
PUBLIC CONST wdFieldFileName=29
PUBLIC CONST wdFieldFileSize=69
PUBLIC CONST wdFieldFillIn=39
PUBLIC CONST wdFieldFootnoteRef=5
PUBLIC CONST wdFieldFormCheckBox=71
PUBLIC CONST wdFieldFormDropDown=83
PUBLIC CONST wdFieldFormTextInput=70
PUBLIC CONST wdFieldFormula=49
PUBLIC CONST wdFieldGlossary=47
PUBLIC CONST wdFieldGoToButton=50
PUBLIC CONST wdFieldHTMLActiveX=91
PUBLIC CONST wdFieldHyperlink=88
PUBLIC CONST wdFieldIf=7
PUBLIC CONST wdFieldImport=55
PUBLIC CONST wdFieldInclude=36
PUBLIC CONST wdFieldIncludePicture=67
PUBLIC CONST wdFieldIncludeText=68
PUBLIC CONST wdFieldIndex=8
PUBLIC CONST wdFieldIndexEntry=4
PUBLIC CONST wdFieldInfo=14
PUBLIC CONST wdFieldKeyWord=18
PUBLIC CONST wdFieldKindCold=3
PUBLIC CONST wdFieldKindHot=1
PUBLIC CONST wdFieldKindNone=0
PUBLIC CONST wdFieldKindWarm=2
PUBLIC CONST wdFieldLastSavedBy=20
PUBLIC CONST wdFieldLink=56
PUBLIC CONST wdFieldListNum=90
PUBLIC CONST wdFieldMacroButton=51
PUBLIC CONST wdFieldMergeField=59
PUBLIC CONST wdFieldMergeRec=44
PUBLIC CONST wdFieldMergeSeq=75
PUBLIC CONST wdFieldNext=41
PUBLIC CONST wdFieldNextIf=42
PUBLIC CONST wdFieldNoteRef=72
PUBLIC CONST wdFieldNumChars=28
PUBLIC CONST wdFieldNumPages=26
PUBLIC CONST wdFieldNumWords=27
PUBLIC CONST wdFieldOCX=87
PUBLIC CONST wdFieldPage=33
PUBLIC CONST wdFieldPageRef=37
PUBLIC CONST wdFieldPrint=48
PUBLIC CONST wdFieldPrintDate=23
PUBLIC CONST wdFieldPrivate=77
PUBLIC CONST wdFieldQuote=35
PUBLIC CONST wdFieldRef=3
PUBLIC CONST wdFieldRefDoc=11
PUBLIC CONST wdFieldRevisionNum=24
PUBLIC CONST wdFieldSaveDate=22
PUBLIC CONST wdFieldSection=65
PUBLIC CONST wdFieldSectionPages=66
PUBLIC CONST wdFieldSequence=12
PUBLIC CONST wdFieldSet=6
PUBLIC CONST wdFieldShadingAlways=1
PUBLIC CONST wdFieldShadingNever=0
PUBLIC CONST wdFieldShadingWhenSelected=2
PUBLIC CONST wdFieldSkipIf=43
PUBLIC CONST wdFieldStyleRef=10
PUBLIC CONST wdFieldSubject=16
PUBLIC CONST wdFieldSubscriber=82
PUBLIC CONST wdFieldSymbol=57
PUBLIC CONST wdFieldTOA=73
PUBLIC CONST wdFieldTOAEntry=74
PUBLIC CONST wdFieldTOC=13
PUBLIC CONST wdFieldTOCEntry=9
PUBLIC CONST wdFieldTemplate=30
PUBLIC CONST wdFieldTime=32
PUBLIC CONST wdFieldTitle=15
PUBLIC CONST wdFieldUserAddress=62
PUBLIC CONST wdFieldUserInitials=61
PUBLIC CONST wdFieldUserName=60
PUBLIC CONST wdFindAsk=2
PUBLIC CONST wdFindContinue=1
PUBLIC CONST wdFindStop=0
PUBLIC CONST wdFinland=358
PUBLIC CONST wdFinnish=1035
PUBLIC CONST wdFirst=1
PUBLIC CONST wdFirstCharacterColumnNumber=9
PUBLIC CONST wdFirstCharacterLineNumber=10
PUBLIC CONST wdFirstPageFooterStory=11
PUBLIC CONST wdFirstPageHeaderStory=10
PUBLIC CONST wdFirstRecord=-4
PUBLIC CONST wdFloatOverText=1
PUBLIC CONST wdFontBiasDefault=0
PUBLIC CONST wdFontBiasDontCare=255
PUBLIC CONST wdFontBiasFareast=1
PUBLIC CONST wdFootnoteNumber=5
PUBLIC CONST wdFootnoteNumberFormatted=16
PUBLIC CONST wdFootnotesStory=2
PUBLIC CONST wdFormLetters=0
PUBLIC CONST wdFormatDOSText=4
PUBLIC CONST wdFormatDOSTextLineBreaks=5
PUBLIC CONST wdFormatDocument=0
PUBLIC CONST wdFormatRTF=6
PUBLIC CONST wdFormatTemplate=1
PUBLIC CONST wdFormatText=2
PUBLIC CONST wdFormatTextLineBreaks=3
PUBLIC CONST wdFormatUnicodeText=7
PUBLIC CONST wdForward=1073741823
PUBLIC CONST wdFrameAtLeast=1
PUBLIC CONST wdFrameAuto=0
PUBLIC CONST wdFrameBottom=-999997
PUBLIC CONST wdFrameCenter=-999995
PUBLIC CONST wdFrameExact=2
PUBLIC CONST wdFrameInside=-999994
PUBLIC CONST wdFrameIsSelected=11
PUBLIC CONST wdFrameLeft=-999998
PUBLIC CONST wdFrameOutside=-999993
PUBLIC CONST wdFrameRight=-999996
PUBLIC CONST wdFrameTop=-999999
PUBLIC CONST wdFrance=33
PUBLIC CONST wdFrench=1036
PUBLIC CONST wdFrenchCanadian=3084
PUBLIC CONST wdFullBlock=0
PUBLIC CONST wdFullWidth=7
PUBLIC CONST wdGenderFemale=0
PUBLIC CONST wdGenderMale=1
PUBLIC CONST wdGenderNeutral=2
PUBLIC CONST wdGenderUnknown=3
PUBLIC CONST wdGerman=1031
PUBLIC CONST wdGermany=49
PUBLIC CONST wdGlobalTemplate=1
PUBLIC CONST wdGoToAbsolute=1
PUBLIC CONST wdGoToBookmark=-1
PUBLIC CONST wdGoToComment=6
PUBLIC CONST wdGoToEndnote=5
PUBLIC CONST wdGoToEquation=10
PUBLIC CONST wdGoToField=7
PUBLIC CONST wdGoToFirst=1
PUBLIC CONST wdGoToFootnote=4
PUBLIC CONST wdGoToGrammaticalError=14
PUBLIC CONST wdGoToGraphic=8
PUBLIC CONST wdGoToHeading=11
PUBLIC CONST wdGoToLast=-1
PUBLIC CONST wdGoToLine=3
PUBLIC CONST wdGoToNext=2
PUBLIC CONST wdGoToObject=9
PUBLIC CONST wdGoToPage=1
PUBLIC CONST wdGoToPercent=12
PUBLIC CONST wdGoToPrevious=3
PUBLIC CONST wdGoToProofreadingError=15
PUBLIC CONST wdGoToRelative=2
PUBLIC CONST wdGoToSection=0
PUBLIC CONST wdGoToSpellingError=13
PUBLIC CONST wdGoToTable=2
PUBLIC CONST wdGrammar=1
PUBLIC CONST wdGrammaticalError=1
PUBLIC CONST wdGraphicsFiltersPath=10
PUBLIC CONST wdGray25=16
PUBLIC CONST wdGray50=15
PUBLIC CONST wdGreek=1032
PUBLIC CONST wdGreen=11
PUBLIC CONST wdHalfWidth=6
PUBLIC CONST wdHangulHanjaConversion=8
PUBLIC CONST wdHangulHanjaConversionCustom=9
PUBLIC CONST wdHangulToHanja=0
PUBLIC CONST wdHanjaToHangul=1
PUBLIC CONST wdHeaderFooterEvenPages=3
PUBLIC CONST wdHeaderFooterFirstPage=2
PUBLIC CONST wdHeaderFooterPrimary=1
PUBLIC CONST wdHeaderFooterType=33
PUBLIC CONST wdHeadingSeparatorBlankLine=1
PUBLIC CONST wdHeadingSeparatorLetter=2
PUBLIC CONST wdHeadingSeparatorLetterFull=4
PUBLIC CONST wdHeadingSeparatorLetterLow=3
PUBLIC CONST wdHeadingSeparatorNone=0
PUBLIC CONST wdHebrew=1037
PUBLIC CONST wdHelp=0
PUBLIC CONST wdHelpAbout=1
PUBLIC CONST wdHelpActiveWindow=2
PUBLIC CONST wdHelpContents=3
PUBLIC CONST wdHelpExamplesAndDemos=4
PUBLIC CONST wdHelpIchitaro=11
PUBLIC CONST wdHelpIndex=5
PUBLIC CONST wdHelpKeyboard=6
PUBLIC CONST wdHelpPE2=12
PUBLIC CONST wdHelpPSSHelp=7
PUBLIC CONST wdHelpQuickPreview=8
PUBLIC CONST wdHelpSearch=9
PUBLIC CONST wdHelpUsingHelp=10
PUBLIC CONST wdHiragana=9
PUBLIC CONST wdHorizontalPositionRelativeToPage=5
PUBLIC CONST wdHorizontalPositionRelativeToTextBoundary=7
PUBLIC CONST wdHungarian=1038
PUBLIC CONST wdHyphenation=3
PUBLIC CONST wdIMEModeAlpha=8
PUBLIC CONST wdIMEModeAlphaFull=7
PUBLIC CONST wdIMEModeHangul=10
PUBLIC CONST wdIMEModeHangulFull=9
PUBLIC CONST wdIMEModeHiragana=4
PUBLIC CONST wdIMEModeKatakana=5
PUBLIC CONST wdIMEModeKatakanaHalf=6
PUBLIC CONST wdIMEModeNoControl=0
PUBLIC CONST wdIMEModeOff=2
PUBLIC CONST wdIMEModeOn=1
PUBLIC CONST wdIceland=354
PUBLIC CONST wdIcelandic=1039
PUBLIC CONST wdIcons=1
PUBLIC CONST wdInClipboard=38
PUBLIC CONST wdInCommentPane=26
PUBLIC CONST wdInEndnote=36
PUBLIC CONST wdInFootnote=35
PUBLIC CONST wdInFootnoteEndnotePane=25
PUBLIC CONST wdInHeaderFooter=28
PUBLIC CONST wdInLine=0
PUBLIC CONST wdInMasterDocument=34
PUBLIC CONST wdInWordMail=37
PUBLIC CONST wdInches=0
PUBLIC CONST wdIndexBulleted=4
PUBLIC CONST wdIndexClassic=1
PUBLIC CONST wdIndexFancy=2
PUBLIC CONST wdIndexFilterAiueo=1
PUBLIC CONST wdIndexFilterAkasatana=2
PUBLIC CONST wdIndexFilterChosung=3
PUBLIC CONST wdIndexFilterFull=6
PUBLIC CONST wdIndexFilterLow=4
PUBLIC CONST wdIndexFilterMedium=5
PUBLIC CONST wdIndexFilterNone=0
PUBLIC CONST wdIndexFormal=5
PUBLIC CONST wdIndexIndent=0
PUBLIC CONST wdIndexModern=3
PUBLIC CONST wdIndexRunin=1
PUBLIC CONST wdIndexSimple=6
PUBLIC CONST wdIndexSortByStroke=0
PUBLIC CONST wdIndexSortBySyllable=1
PUBLIC CONST wdIndexTemplate=0
PUBLIC CONST wdInlineShapeEmbeddedOLEObject=1
PUBLIC CONST wdInlineShapeLinkedOLEObject=2
PUBLIC CONST wdInlineShapeLinkedPicture=4
PUBLIC CONST wdInlineShapeOLEControlObject=5
PUBLIC CONST wdInlineShapePicture=3
PUBLIC CONST wdInsertCellsEntireColumn=3
PUBLIC CONST wdInsertCellsEntireRow=2
PUBLIC CONST wdInsertCellsShiftDown=1
PUBLIC CONST wdInsertCellsShiftRight=0
PUBLIC CONST wdInsertedTextMarkBold=1
PUBLIC CONST wdInsertedTextMarkDoubleUnderline=4
PUBLIC CONST wdInsertedTextMarkItalic=2
PUBLIC CONST wdInsertedTextMarkNone=0
PUBLIC CONST wdInsertedTextMarkUnderline=3
PUBLIC CONST wdInternationalAM=22
PUBLIC CONST wdInternationalPM=23
PUBLIC CONST wdItalian=1040
PUBLIC CONST wdItaly=39
PUBLIC CONST wdItem=16
PUBLIC CONST wdJapan=81
PUBLIC CONST wdJapanese=1041
PUBLIC CONST wdJustificationModeCompress=1
PUBLIC CONST wdJustificationModeCompressKana=2
PUBLIC CONST wdJustificationModeExpand=0
PUBLIC CONST wdKatakana=8
PUBLIC CONST wdKey0=48
PUBLIC CONST wdKey1=49
PUBLIC CONST wdKey2=50
PUBLIC CONST wdKey3=51
PUBLIC CONST wdKey4=52
PUBLIC CONST wdKey5=53
PUBLIC CONST wdKey6=54
PUBLIC CONST wdKey7=55
PUBLIC CONST wdKey8=56
PUBLIC CONST wdKey9=57
PUBLIC CONST wdKeyA=65
PUBLIC CONST wdKeyAlt=1024
PUBLIC CONST wdKeyB=66
PUBLIC CONST wdKeyBackSingleQuote=192
PUBLIC CONST wdKeyBackSlash=220
PUBLIC CONST wdKeyBackspace=8
PUBLIC CONST wdKeyC=67
PUBLIC CONST wdKeyCategoryAutoText=4
PUBLIC CONST wdKeyCategoryCommand=1
PUBLIC CONST wdKeyCategoryDisable=0
PUBLIC CONST wdKeyCategoryFont=3
PUBLIC CONST wdKeyCategoryMacro=2
PUBLIC CONST wdKeyCategoryNil=-1
PUBLIC CONST wdKeyCategoryPrefix=7
PUBLIC CONST wdKeyCategoryStyle=5
PUBLIC CONST wdKeyCategorySymbol=6
PUBLIC CONST wdKeyCloseSquareBrace=221
PUBLIC CONST wdKeyComma=188
PUBLIC CONST wdKeyCommand=512
PUBLIC CONST wdKeyControl=512
PUBLIC CONST wdKeyD=68
PUBLIC CONST wdKeyDelete=46
PUBLIC CONST wdKeyE=69
PUBLIC CONST wdKeyEnd=35
PUBLIC CONST wdKeyEquals=187
PUBLIC CONST wdKeyEsc=27
PUBLIC CONST wdKeyF=70
PUBLIC CONST wdKeyF1=112
PUBLIC CONST wdKeyF10=121
PUBLIC CONST wdKeyF11=122
PUBLIC CONST wdKeyF12=123
PUBLIC CONST wdKeyF13=124
PUBLIC CONST wdKeyF14=125
PUBLIC CONST wdKeyF15=126
PUBLIC CONST wdKeyF16=127
PUBLIC CONST wdKeyF2=113
PUBLIC CONST wdKeyF3=114
PUBLIC CONST wdKeyF4=115
PUBLIC CONST wdKeyF5=116
PUBLIC CONST wdKeyF6=117
PUBLIC CONST wdKeyF7=118
PUBLIC CONST wdKeyF8=119
PUBLIC CONST wdKeyF9=120
PUBLIC CONST wdKeyG=71
PUBLIC CONST wdKeyH=72
PUBLIC CONST wdKeyHome=36
PUBLIC CONST wdKeyHyphen=189
PUBLIC CONST wdKeyI=73
PUBLIC CONST wdKeyInsert=45
PUBLIC CONST wdKeyJ=74
PUBLIC CONST wdKeyK=75
PUBLIC CONST wdKeyL=76
PUBLIC CONST wdKeyM=77
PUBLIC CONST wdKeyN=78
PUBLIC CONST wdKeyNumeric0=96
PUBLIC CONST wdKeyNumeric1=97
PUBLIC CONST wdKeyNumeric2=98
PUBLIC CONST wdKeyNumeric3=99
PUBLIC CONST wdKeyNumeric4=100
PUBLIC CONST wdKeyNumeric5=101
PUBLIC CONST wdKeyNumeric5Special=12
PUBLIC CONST wdKeyNumeric6=102
PUBLIC CONST wdKeyNumeric7=103
PUBLIC CONST wdKeyNumeric8=104
PUBLIC CONST wdKeyNumeric9=105
PUBLIC CONST wdKeyNumericAdd=107
PUBLIC CONST wdKeyNumericDecimal=110
PUBLIC CONST wdKeyNumericDivide=111
PUBLIC CONST wdKeyNumericMultiply=106
PUBLIC CONST wdKeyNumericSubtract=109
PUBLIC CONST wdKeyO=79
PUBLIC CONST wdKeyOpenSquareBrace=219
PUBLIC CONST wdKeyOption=1024
PUBLIC CONST wdKeyP=80
PUBLIC CONST wdKeyPageDown=34
PUBLIC CONST wdKeyPageUp=33
PUBLIC CONST wdKeyPause=19
PUBLIC CONST wdKeyPeriod=190
PUBLIC CONST wdKeyQ=81
PUBLIC CONST wdKeyR=82
PUBLIC CONST wdKeyReturn=13
PUBLIC CONST wdKeyS=83
PUBLIC CONST wdKeyScrollLock=145
PUBLIC CONST wdKeySemiColon=186
PUBLIC CONST wdKeyShift=256
PUBLIC CONST wdKeySingleQuote=222
PUBLIC CONST wdKeySlash=191
PUBLIC CONST wdKeySpacebar=32
PUBLIC CONST wdKeyT=84
PUBLIC CONST wdKeyTab=9
PUBLIC CONST wdKeyU=85
PUBLIC CONST wdKeyV=86
PUBLIC CONST wdKeyW=87
PUBLIC CONST wdKeyX=88
PUBLIC CONST wdKeyY=89
PUBLIC CONST wdKeyZ=90
PUBLIC CONST wdKorea=82
PUBLIC CONST wdKorean=1042
PUBLIC CONST wdLanguageNone=0
PUBLIC CONST wdLastRecord=-5
PUBLIC CONST wdLatinAmerica=3
PUBLIC CONST wdLatvian=1062
PUBLIC CONST wdLeaveBackslashAlone=13
PUBLIC CONST wdLeftClockwise=6
PUBLIC CONST wdLeftLandscape=3
PUBLIC CONST wdLeftPortrait=0
PUBLIC CONST wdLetterBottom=1
PUBLIC CONST wdLetterLeft=2
PUBLIC CONST wdLetterRight=3
PUBLIC CONST wdLetterTop=0
PUBLIC CONST wdLine=5
PUBLIC CONST wdLineBreak=6
PUBLIC CONST wdLineSpace1pt5=1
PUBLIC CONST wdLineSpaceAtLeast=3
PUBLIC CONST wdLineSpaceDouble=2
PUBLIC CONST wdLineSpaceExactly=4
PUBLIC CONST wdLineSpaceMultiple=5
PUBLIC CONST wdLineSpaceSingle=0
PUBLIC CONST wdLineStyleDashDot=5
PUBLIC CONST wdLineStyleDashDotDot=6
PUBLIC CONST wdLineStyleDashDotStroked=20
PUBLIC CONST wdLineStyleDashLargeGap=4
PUBLIC CONST wdLineStyleDashSmallGap=3
PUBLIC CONST wdLineStyleDot=2
PUBLIC CONST wdLineStyleDouble=7
PUBLIC CONST wdLineStyleDoubleWavy=19
PUBLIC CONST wdLineStyleEmboss3D=21
PUBLIC CONST wdLineStyleEngrave3D=22
PUBLIC CONST wdLineStyleNone=0
PUBLIC CONST wdLineStyleSingle=1
PUBLIC CONST wdLineStyleSingleWavy=18
PUBLIC CONST wdLineStyleThickThinLargeGap=16
PUBLIC CONST wdLineStyleThickThinMedGap=13
PUBLIC CONST wdLineStyleThickThinSmallGap=10
PUBLIC CONST wdLineStyleThinThickLargeGap=15
PUBLIC CONST wdLineStyleThinThickMedGap=12
PUBLIC CONST wdLineStyleThinThickSmallGap=9
PUBLIC CONST wdLineStyleThinThickThinLargeGap=17
PUBLIC CONST wdLineStyleThinThickThinMedGap=14
PUBLIC CONST wdLineStyleThinThickThinSmallGap=11
PUBLIC CONST wdLineStyleTriple=8
PUBLIC CONST wdLineWidth025pt=2
PUBLIC CONST wdLineWidth050pt=4
PUBLIC CONST wdLineWidth075pt=6
PUBLIC CONST wdLineWidth100pt=8
PUBLIC CONST wdLineWidth150pt=12
PUBLIC CONST wdLineWidth225pt=18
PUBLIC CONST wdLineWidth300pt=24
PUBLIC CONST wdLineWidth450pt=36
PUBLIC CONST wdLineWidth600pt=48
PUBLIC CONST wdLineWrapLikeWord6=32
PUBLIC CONST wdLinkDataInDoc=1
PUBLIC CONST wdLinkDataOnDisk=2
PUBLIC CONST wdLinkNone=0
PUBLIC CONST wdLinkTypeDDE=6
PUBLIC CONST wdLinkTypeDDEAuto=7
PUBLIC CONST wdLinkTypeImport=5
PUBLIC CONST wdLinkTypeInclude=4
PUBLIC CONST wdLinkTypeOLE=0
PUBLIC CONST wdLinkTypePicture=1
PUBLIC CONST wdLinkTypeReference=3
PUBLIC CONST wdLinkTypeText=2
PUBLIC CONST wdListApplyToSelection=2
PUBLIC CONST wdListApplyToThisPointForward=1
PUBLIC CONST wdListApplyToWholeList=0
PUBLIC CONST wdListBullet=2
PUBLIC CONST wdListLevelAlignCenter=1
PUBLIC CONST wdListLevelAlignLeft=0
PUBLIC CONST wdListLevelAlignRight=2
PUBLIC CONST wdListListNumOnly=1
PUBLIC CONST wdListMixedNumbering=5
PUBLIC CONST wdListNoNumbering=0
PUBLIC CONST wdListNumberStyleAiueo=20
PUBLIC CONST wdListNumberStyleAiueoHalfWidth=12
PUBLIC CONST wdListNumberStyleArabic=0
PUBLIC CONST wdListNumberStyleArabicFullWidth=14
PUBLIC CONST wdListNumberStyleArabicLZ=22
PUBLIC CONST wdListNumberStyleBullet=23
PUBLIC CONST wdListNumberStyleCardinalText=6
PUBLIC CONST wdListNumberStyleChosung=25
PUBLIC CONST wdListNumberStyleGBNum1=26
PUBLIC CONST wdListNumberStyleGBNum2=27
PUBLIC CONST wdListNumberStyleGBNum3=28
PUBLIC CONST wdListNumberStyleGBNum4=29
PUBLIC CONST wdListNumberStyleGanada=24
PUBLIC CONST wdListNumberStyleHangul=43
PUBLIC CONST wdListNumberStyleHanja=44
PUBLIC CONST wdListNumberStyleHanjaRead=41
PUBLIC CONST wdListNumberStyleHanjaReadDigit=42
PUBLIC CONST wdListNumberStyleIroha=21
PUBLIC CONST wdListNumberStyleIrohaHalfWidth=13
PUBLIC CONST wdListNumberStyleKanji=10
PUBLIC CONST wdListNumberStyleKanjiDigit=11
PUBLIC CONST wdListNumberStyleKanjiTraditional=16
PUBLIC CONST wdListNumberStyleKanjiTraditional2=17
PUBLIC CONST wdListNumberStyleLegal=253
PUBLIC CONST wdListNumberStyleLegalLZ=254
PUBLIC CONST wdListNumberStyleLowercaseLetter=4
PUBLIC CONST wdListNumberStyleLowercaseRoman=2
PUBLIC CONST wdListNumberStyleNone=255
PUBLIC CONST wdListNumberStyleNumberInCircle=18
PUBLIC CONST wdListNumberStyleOrdinal=5
PUBLIC CONST wdListNumberStyleOrdinalText=7
PUBLIC CONST wdListNumberStyleSimpChinNum1=37
PUBLIC CONST wdListNumberStyleSimpChinNum2=38
PUBLIC CONST wdListNumberStyleSimpChinNum3=39
PUBLIC CONST wdListNumberStyleSimpChinNum4=40
PUBLIC CONST wdListNumberStyleTradChinNum1=33
PUBLIC CONST wdListNumberStyleTradChinNum2=34
PUBLIC CONST wdListNumberStyleTradChinNum3=35
PUBLIC CONST wdListNumberStyleTradChinNum4=36
PUBLIC CONST wdListNumberStyleUppercaseLetter=3
PUBLIC CONST wdListNumberStyleUppercaseRoman=1
PUBLIC CONST wdListNumberStyleZodiac1=30
PUBLIC CONST wdListNumberStyleZodiac2=31
PUBLIC CONST wdListNumberStyleZodiac3=32
PUBLIC CONST wdListOutlineNumbering=4
PUBLIC CONST wdListSeparator=17
PUBLIC CONST wdListSimpleNumbering=3
PUBLIC CONST wdLowerCase=0
PUBLIC CONST wdMAPI=1
PUBLIC CONST wdMAPIandPowerTalk=3
PUBLIC CONST wdMWSmallCaps=22
PUBLIC CONST wdMacedonian=1071
PUBLIC CONST wdMailingLabels=1
PUBLIC CONST wdMainAndDataSource=2
PUBLIC CONST wdMainAndHeader=3
PUBLIC CONST wdMainAndSourceAndHeader=4
PUBLIC CONST wdMainDocumentOnly=1
PUBLIC CONST wdMainTextStory=1
PUBLIC CONST wdMalaysian=1086
PUBLIC CONST wdManualUpdate=4
PUBLIC CONST wdMasterView=5
PUBLIC CONST wdMatchAnyCharacter=65599
PUBLIC CONST wdMatchAnyDigit=65567
PUBLIC CONST wdMatchAnyLetter=65583
PUBLIC CONST wdMatchCaretCharacter=11
PUBLIC CONST wdMatchColumnBreak=14
PUBLIC CONST wdMatchCommentMark=5
PUBLIC CONST wdMatchEmDash=8212
PUBLIC CONST wdMatchEnDash=8211
PUBLIC CONST wdMatchEndnoteMark=65555
PUBLIC CONST wdMatchField=19
PUBLIC CONST wdMatchFootnoteMark=65554
PUBLIC CONST wdMatchGraphic=1
PUBLIC CONST wdMatchManualLineBreak=65551
PUBLIC CONST wdMatchManualPageBreak=65564
PUBLIC CONST wdMatchNonbreakingHyphen=30
PUBLIC CONST wdMatchNonbreakingSpace=160
PUBLIC CONST wdMatchOptionalHyphen=31
PUBLIC CONST wdMatchParagraphMark=65551
PUBLIC CONST wdMatchSectionBreak=65580
PUBLIC CONST wdMatchTabCharacter=9
PUBLIC CONST wdMatchWhiteSpace=65655
PUBLIC CONST wdMaximumNumberOfColumns=18
PUBLIC CONST wdMaximumNumberOfRows=15
PUBLIC CONST wdMergeIfEqual=0
PUBLIC CONST wdMergeIfGreaterThan=3
PUBLIC CONST wdMergeIfGreaterThanOrEqual=5
PUBLIC CONST wdMergeIfIsBlank=6
PUBLIC CONST wdMergeIfIsNotBlank=7
PUBLIC CONST wdMergeIfLessThan=2
PUBLIC CONST wdMergeIfLessThanOrEqual=4
PUBLIC CONST wdMergeIfNotEqual=1
PUBLIC CONST wdMergeInfoFromAccessDDE=1
PUBLIC CONST wdMergeInfoFromExcelDDE=2
PUBLIC CONST wdMergeInfoFromMSQueryDDE=3
PUBLIC CONST wdMergeInfoFromODBC=4
PUBLIC CONST wdMergeInfoFromWord=0
PUBLIC CONST wdMexicanSpanish=2058
PUBLIC CONST wdMexico=52
PUBLIC CONST wdMillimeters=2
PUBLIC CONST wdModifiedBlock=1
PUBLIC CONST wdMove=0
PUBLIC CONST wdNetherlands=31
PUBLIC CONST wdNeverConvert=0
PUBLIC CONST wdNextCase=-1
PUBLIC CONST wdNextRecord=-2
PUBLIC CONST wdNoActiveRecord=-1
PUBLIC CONST wdNoColumnBalance=5
PUBLIC CONST wdNoExtraLineSpacing=23
PUBLIC CONST wdNoHighlight=0
PUBLIC CONST wdNoKey=255
PUBLIC CONST wdNoLeading=20
PUBLIC CONST wdNoMailSystem=0
PUBLIC CONST wdNoMergeInfo=-1
PUBLIC CONST wdNoProofing=1024
PUBLIC CONST wdNoProtection=-1
PUBLIC CONST wdNoRevision=0
PUBLIC CONST wdNoSelection=0
PUBLIC CONST wdNoSpaceForUL=21
PUBLIC CONST wdNoSpaceRaiseLower=2
PUBLIC CONST wdNoTabHangIndent=1
PUBLIC CONST wdNormalDocument=0
PUBLIC CONST wdNormalTemplate=0
PUBLIC CONST wdNormalView=1
PUBLIC CONST wdNorway=47
PUBLIC CONST wdNorwegianBokmol=1044
PUBLIC CONST wdNorwegianNynorsk=2068
PUBLIC CONST wdNotAMergeDocument=-1
PUBLIC CONST wdNotYetRouted=0
PUBLIC CONST wdNoteNumberStyleArabic=0
PUBLIC CONST wdNoteNumberStyleArabicFullWidth=14
PUBLIC CONST wdNoteNumberStyleHanjaRead=41
PUBLIC CONST wdNoteNumberStyleHanjaReadDigit=42
PUBLIC CONST wdNoteNumberStyleKanji=10
PUBLIC CONST wdNoteNumberStyleKanjiDigit=11
PUBLIC CONST wdNoteNumberStyleKanjiTraditional=16
PUBLIC CONST wdNoteNumberStyleLowercaseLetter=4
PUBLIC CONST wdNoteNumberStyleLowercaseRoman=2
PUBLIC CONST wdNoteNumberStyleNumberInCircle=18
PUBLIC CONST wdNoteNumberStyleSimpChinNum1=37
PUBLIC CONST wdNoteNumberStyleSimpChinNum2=38
PUBLIC CONST wdNoteNumberStyleSymbol=9
PUBLIC CONST wdNoteNumberStyleTradChinNum1=33
PUBLIC CONST wdNoteNumberStyleTradChinNum2=34
PUBLIC CONST wdNoteNumberStyleUppercaseLetter=3
PUBLIC CONST wdNoteNumberStyleUppercaseRoman=1
PUBLIC CONST wdNoun=1
PUBLIC CONST wdNumLock=22
PUBLIC CONST wdNumberAllNumbers=3
PUBLIC CONST wdNumberFullContext=-4
PUBLIC CONST wdNumberGallery=2
PUBLIC CONST wdNumberListNum=2
PUBLIC CONST wdNumberNoContext=-3
PUBLIC CONST wdNumberOfPagesInDocument=4
PUBLIC CONST wdNumberParagraph=1
PUBLIC CONST wdNumberRelativeContext=-2
PUBLIC CONST wdNumberText=1
PUBLIC CONST wdOLEControl=2
PUBLIC CONST wdOLEEmbed=1
PUBLIC CONST wdOLELink=0
PUBLIC CONST wdOLEVerbDiscardUndoState=-6
PUBLIC CONST wdOLEVerbHide=-3
PUBLIC CONST wdOLEVerbInPlaceActivate=-5
PUBLIC CONST wdOLEVerbOpen=-2
PUBLIC CONST wdOLEVerbPrimary=0
PUBLIC CONST wdOLEVerbShow=-1
PUBLIC CONST wdOLEVerbUIActivate=-4
PUBLIC CONST wdOneAfterAnother=0
PUBLIC CONST wdOnlineView=6
PUBLIC CONST wdOnlyCaptionText=4
PUBLIC CONST wdOnlyLabelAndNumber=3
PUBLIC CONST wdOpenFormatAuto=0
PUBLIC CONST wdOpenFormatDocument=1
PUBLIC CONST wdOpenFormatRTF=3
PUBLIC CONST wdOpenFormatTemplate=2
PUBLIC CONST wdOpenFormatText=4
PUBLIC CONST wdOpenFormatUnicodeText=5
PUBLIC CONST wdOpenSource=7
PUBLIC CONST wdOrganizerObjectAutoText=1
PUBLIC CONST wdOrganizerObjectCommandBars=2
PUBLIC CONST wdOrganizerObjectProjectItems=3
PUBLIC CONST wdOrganizerObjectStyles=0
PUBLIC CONST wdOrientLandscape=1
PUBLIC CONST wdOrientPortrait=0
PUBLIC CONST wdOrigWordTableRules=9
PUBLIC CONST wdOriginalDocumentFormat=1
PUBLIC CONST wdOutlineLevel1=1
PUBLIC CONST wdOutlineLevel2=2
PUBLIC CONST wdOutlineLevel3=3
PUBLIC CONST wdOutlineLevel4=4
PUBLIC CONST wdOutlineLevel5=5
PUBLIC CONST wdOutlineLevel6=6
PUBLIC CONST wdOutlineLevel7=7
PUBLIC CONST wdOutlineLevel8=8
PUBLIC CONST wdOutlineLevel9=9
PUBLIC CONST wdOutlineLevelBodyText=10
PUBLIC CONST wdOutlineNumberGallery=3
PUBLIC CONST wdOutlineView=2
PUBLIC CONST wdOverType=23
PUBLIC CONST wdPageBreak=7
PUBLIC CONST wdPageFitBestFit=2
PUBLIC CONST wdPageFitFullPage=1
PUBLIC CONST wdPageFitNone=0
PUBLIC CONST wdPageNumber=7
PUBLIC CONST wdPageNumberStyleArabic=0
PUBLIC CONST wdPageNumberStyleArabicFullWidth=14
PUBLIC CONST wdPageNumberStyleHanjaRead=41
PUBLIC CONST wdPageNumberStyleHanjaReadDigit=42
PUBLIC CONST wdPageNumberStyleKanji=10
PUBLIC CONST wdPageNumberStyleKanjiDigit=11
PUBLIC CONST wdPageNumberStyleKanjiTraditional=16
PUBLIC CONST wdPageNumberStyleLowercaseLetter=4
PUBLIC CONST wdPageNumberStyleLowercaseRoman=2
PUBLIC CONST wdPageNumberStyleNumberInCircle=18
PUBLIC CONST wdPageNumberStyleSimpChinNum1=37
PUBLIC CONST wdPageNumberStyleSimpChinNum2=38
PUBLIC CONST wdPageNumberStyleTradChinNum1=33
PUBLIC CONST wdPageNumberStyleTradChinNum2=34
PUBLIC CONST wdPageNumberStyleUppercaseLetter=3
PUBLIC CONST wdPageNumberStyleUppercaseRoman=1
PUBLIC CONST wdPageView=3
PUBLIC CONST wdPaneComments=15
PUBLIC CONST wdPaneCurrentPageFooter=17
PUBLIC CONST wdPaneCurrentPageHeader=16
PUBLIC CONST wdPaneEndnoteContinuationNotice=12
PUBLIC CONST wdPaneEndnoteContinuationSeparator=13
PUBLIC CONST wdPaneEndnoteSeparator=14
PUBLIC CONST wdPaneEndnotes=8
PUBLIC CONST wdPaneEvenPagesFooter=6
PUBLIC CONST wdPaneEvenPagesHeader=3
PUBLIC CONST wdPaneFirstPageFooter=5
PUBLIC CONST wdPaneFirstPageHeader=2
PUBLIC CONST wdPaneFootnoteContinuationNotice=9
PUBLIC CONST wdPaneFootnoteContinuationSeparator=10
PUBLIC CONST wdPaneFootnoteSeparator=11
PUBLIC CONST wdPaneFootnotes=7
PUBLIC CONST wdPaneNone=0
PUBLIC CONST wdPanePrimaryFooter=4
PUBLIC CONST wdPanePrimaryHeader=1
PUBLIC CONST wdPaper10x14=0
PUBLIC CONST wdPaper11x17=1
PUBLIC CONST wdPaperA3=6
PUBLIC CONST wdPaperA4=7
PUBLIC CONST wdPaperA4Small=8
PUBLIC CONST wdPaperA5=9
PUBLIC CONST wdPaperB4=10
PUBLIC CONST wdPaperB5=11
PUBLIC CONST wdPaperCSheet=12
PUBLIC CONST wdPaperCustom=41
PUBLIC CONST wdPaperDSheet=13
PUBLIC CONST wdPaperESheet=14
PUBLIC CONST wdPaperEnvelope10=25
PUBLIC CONST wdPaperEnvelope11=26
PUBLIC CONST wdPaperEnvelope12=27
PUBLIC CONST wdPaperEnvelope14=28
PUBLIC CONST wdPaperEnvelope9=24
PUBLIC CONST wdPaperEnvelopeB4=29
PUBLIC CONST wdPaperEnvelopeB5=30
PUBLIC CONST wdPaperEnvelopeB6=31
PUBLIC CONST wdPaperEnvelopeC3=32
PUBLIC CONST wdPaperEnvelopeC4=33
PUBLIC CONST wdPaperEnvelopeC5=34
PUBLIC CONST wdPaperEnvelopeC6=35
PUBLIC CONST wdPaperEnvelopeC65=36
PUBLIC CONST wdPaperEnvelopeDL=37
PUBLIC CONST wdPaperEnvelopeItaly=38
PUBLIC CONST wdPaperEnvelopeMonarch=39
PUBLIC CONST wdPaperEnvelopePersonal=40
PUBLIC CONST wdPaperExecutive=5
PUBLIC CONST wdPaperFanfoldLegalGerman=15
PUBLIC CONST wdPaperFanfoldStdGerman=16
PUBLIC CONST wdPaperFanfoldUS=17
PUBLIC CONST wdPaperFolio=18
PUBLIC CONST wdPaperLedger=19
PUBLIC CONST wdPaperLegal=4
PUBLIC CONST wdPaperLetter=2
PUBLIC CONST wdPaperLetterSmall=3
PUBLIC CONST wdPaperNote=20
PUBLIC CONST wdPaperQuarto=21
PUBLIC CONST wdPaperStatement=22
PUBLIC CONST wdPaperTabloid=23
PUBLIC CONST wdParagraph=4
PUBLIC CONST wdParagraphFormatting=14
PUBLIC CONST wdPasteBitmap=4
PUBLIC CONST wdPasteDeviceIndependentBitmap=5
PUBLIC CONST wdPasteEnhancedMetafile=9
PUBLIC CONST wdPasteHyperlink=7
PUBLIC CONST wdPasteMetafilePicture=3
PUBLIC CONST wdPasteOLEObject=0
PUBLIC CONST wdPasteRTF=1
PUBLIC CONST wdPasteShape=8
PUBLIC CONST wdPasteText=2
PUBLIC CONST wdPeru=51
PUBLIC CONST wdPicas=4
PUBLIC CONST wdPicturesPath=1
PUBLIC CONST wdPink=5
PUBLIC CONST wdPoints=3
PUBLIC CONST wdPolish=1045
PUBLIC CONST wdPortuguese=2070
PUBLIC CONST wdPosition=15
PUBLIC CONST wdPowerTalk=2
PUBLIC CONST wdPreviousRecord=-3
PUBLIC CONST wdPrimaryFooterStory=9
PUBLIC CONST wdPrimaryHeaderStory=7
PUBLIC CONST wdPrintAllDocument=0
PUBLIC CONST wdPrintAllPages=0
PUBLIC CONST wdPrintAutoTextEntries=4
PUBLIC CONST wdPrintBodyTextBeforeHeader=19
PUBLIC CONST wdPrintColBlack=3
PUBLIC CONST wdPrintComments=2
PUBLIC CONST wdPrintCurrentPage=2
PUBLIC CONST wdPrintDocumentContent=0
PUBLIC CONST wdPrintEnvelope=6
PUBLIC CONST wdPrintEvenPagesOnly=2
PUBLIC CONST wdPrintFromTo=3
PUBLIC CONST wdPrintKeyAssignments=5
PUBLIC CONST wdPrintOddPagesOnly=1
PUBLIC CONST wdPrintPreview=4
PUBLIC CONST wdPrintProperties=1
PUBLIC CONST wdPrintRangeOfPages=4
PUBLIC CONST wdPrintSelection=1
PUBLIC CONST wdPrintStyles=3
PUBLIC CONST wdPrinterAutomaticSheetFeed=7
PUBLIC CONST wdPrinterDefaultBin=0
PUBLIC CONST wdPrinterEnvelopeFeed=5
PUBLIC CONST wdPrinterFormSource=15
PUBLIC CONST wdPrinterLargeCapacityBin=11
PUBLIC CONST wdPrinterLargeFormatBin=10
PUBLIC CONST wdPrinterLowerBin=2
PUBLIC CONST wdPrinterManualEnvelopeFeed=6
PUBLIC CONST wdPrinterManualFeed=4
PUBLIC CONST wdPrinterMiddleBin=3
PUBLIC CONST wdPrinterOnlyBin=1
PUBLIC CONST wdPrinterPaperCassette=14
PUBLIC CONST wdPrinterSmallFormatBin=9
PUBLIC CONST wdPrinterTractorFeed=8
PUBLIC CONST wdPrinterUpperBin=1
PUBLIC CONST wdProductLanguageID=26
PUBLIC CONST wdProgramPath=9
PUBLIC CONST wdPromptToSaveChanges=-2
PUBLIC CONST wdPromptUser=2
PUBLIC CONST wdProofingToolsPath=12
PUBLIC CONST wdPropertyAppName=9
PUBLIC CONST wdPropertyAuthor=3
PUBLIC CONST wdPropertyBytes=22
PUBLIC CONST wdPropertyCategory=18
PUBLIC CONST wdPropertyCharacters=16
PUBLIC CONST wdPropertyCharsWSpaces=30
PUBLIC CONST wdPropertyComments=5
PUBLIC CONST wdPropertyCompany=21
PUBLIC CONST wdPropertyFormat=19
PUBLIC CONST wdPropertyHiddenSlides=27
PUBLIC CONST wdPropertyHyperlinkBase=29
PUBLIC CONST wdPropertyKeywords=4
PUBLIC CONST wdPropertyLastAuthor=7
PUBLIC CONST wdPropertyLines=23
PUBLIC CONST wdPropertyMMClips=28
PUBLIC CONST wdPropertyManager=20
PUBLIC CONST wdPropertyNotes=26
PUBLIC CONST wdPropertyPages=14
PUBLIC CONST wdPropertyParas=24
PUBLIC CONST wdPropertyRevision=8
PUBLIC CONST wdPropertySecurity=17
PUBLIC CONST wdPropertySlides=25
PUBLIC CONST wdPropertySubject=2
PUBLIC CONST wdPropertyTemplate=6
PUBLIC CONST wdPropertyTimeCreated=11
PUBLIC CONST wdPropertyTimeLastPrinted=10
PUBLIC CONST wdPropertyTimeLastSaved=12
PUBLIC CONST wdPropertyTitle=1
PUBLIC CONST wdPropertyVBATotalEdit=13
PUBLIC CONST wdPropertyWords=15
PUBLIC CONST wdPublisher=0
PUBLIC CONST wdRed=6
PUBLIC CONST wdRefTypeBookmark=2
PUBLIC CONST wdRefTypeEndnote=4
PUBLIC CONST wdRefTypeFootnote=3
PUBLIC CONST wdRefTypeHeading=1
PUBLIC CONST wdRefTypeNumberedItem=0
PUBLIC CONST wdReferenceOfType=32
PUBLIC CONST wdRegularText=0
PUBLIC CONST wdRelativeHorizontalPositionColumn=2
PUBLIC CONST wdRelativeHorizontalPositionMargin=0
PUBLIC CONST wdRelativeHorizontalPositionPage=1
PUBLIC CONST wdRelativeVerticalPositionMargin=0
PUBLIC CONST wdRelativeVerticalPositionPage=1
PUBLIC CONST wdRelativeVerticalPositionParagraph=2
PUBLIC CONST wdRelocateDown=1
PUBLIC CONST wdRelocateUp=0
PUBLIC CONST wdReplaceAll=2
PUBLIC CONST wdReplaceNone=0
PUBLIC CONST wdReplaceOne=1
PUBLIC CONST wdResetList=1
PUBLIC CONST wdRestartContinuous=0
PUBLIC CONST wdRestartPage=2
PUBLIC CONST wdRestartSection=1
PUBLIC CONST wdRevisedLinesMarkLeftBorder=1
PUBLIC CONST wdRevisedLinesMarkNone=0
PUBLIC CONST wdRevisedLinesMarkOutsideBorder=3
PUBLIC CONST wdRevisedLinesMarkRightBorder=2
PUBLIC CONST wdRevisedPropertiesMarkBold=1
PUBLIC CONST wdRevisedPropertiesMarkDoubleUnderline=4
PUBLIC CONST wdRevisedPropertiesMarkItalic=2
PUBLIC CONST wdRevisedPropertiesMarkNone=0
PUBLIC CONST wdRevisedPropertiesMarkUnderline=3
PUBLIC CONST wdRevisionConflict=7
PUBLIC CONST wdRevisionDelete=2
PUBLIC CONST wdRevisionDisplayField=5
PUBLIC CONST wdRevisionInsert=1
PUBLIC CONST wdRevisionMarking=24
PUBLIC CONST wdRevisionParagraphNumber=4
PUBLIC CONST wdRevisionProperty=3
PUBLIC CONST wdRevisionReconcile=6
PUBLIC CONST wdRevisionReplace=9
PUBLIC CONST wdRevisionStyle=8
PUBLIC CONST wdRightClockwise=8
PUBLIC CONST wdRightLandscape=5
PUBLIC CONST wdRightPortrait=2
PUBLIC CONST wdRomanian=1048
PUBLIC CONST wdRouteComplete=2
PUBLIC CONST wdRouteInProgress=1
PUBLIC CONST wdRow=10
PUBLIC CONST wdRowHeightAtLeast=1
PUBLIC CONST wdRowHeightAuto=0
PUBLIC CONST wdRowHeightExactly=2
PUBLIC CONST wdRussian=1049
PUBLIC CONST wdSalutationBusiness=2
PUBLIC CONST wdSalutationFormal=1
PUBLIC CONST wdSalutationInformal=0
PUBLIC CONST wdSalutationOther=3
PUBLIC CONST wdSaveChanges=-1
PUBLIC CONST wdScreen=7
PUBLIC CONST wdSection=8
PUBLIC CONST wdSectionBreakContinuous=3
PUBLIC CONST wdSectionBreakEvenPage=4
PUBLIC CONST wdSectionBreakNextPage=2
PUBLIC CONST wdSectionBreakOddPage=5
PUBLIC CONST wdSectionContinuous=0
PUBLIC CONST wdSectionEvenPage=3
PUBLIC CONST wdSectionNewColumn=1
PUBLIC CONST wdSectionNewPage=2
PUBLIC CONST wdSectionOddPage=4
PUBLIC CONST wdSeekCurrentPageFooter=10
PUBLIC CONST wdSeekCurrentPageHeader=9
PUBLIC CONST wdSeekEndnotes=8
PUBLIC CONST wdSeekEvenPagesFooter=6
PUBLIC CONST wdSeekEvenPagesHeader=3
PUBLIC CONST wdSeekFirstPageFooter=5
PUBLIC CONST wdSeekFirstPageHeader=2
PUBLIC CONST wdSeekFootnotes=7
PUBLIC CONST wdSeekMainDocument=0
PUBLIC CONST wdSeekPrimaryFooter=4
PUBLIC CONST wdSeekPrimaryHeader=1
PUBLIC CONST wdSelActive=8
PUBLIC CONST wdSelAtEOL=2
PUBLIC CONST wdSelOvertype=4
PUBLIC CONST wdSelReplace=16
PUBLIC CONST wdSelStartActive=1
PUBLIC CONST wdSelectPublisher=2
PUBLIC CONST wdSelectionBlock=6
PUBLIC CONST wdSelectionColumn=4
PUBLIC CONST wdSelectionFrame=3
PUBLIC CONST wdSelectionIP=1
PUBLIC CONST wdSelectionInlineShape=7
PUBLIC CONST wdSelectionMode=20
PUBLIC CONST wdSelectionNormal=2
PUBLIC CONST wdSelectionRow=5
PUBLIC CONST wdSelectionShape=8
PUBLIC CONST wdSemiBlock=2
PUBLIC CONST wdSendPublisher=1
PUBLIC CONST wdSendToEmail=2
PUBLIC CONST wdSendToFax=3
PUBLIC CONST wdSendToNewDocument=0
PUBLIC CONST wdSendToPrinter=1
PUBLIC CONST wdSentence=3
PUBLIC CONST wdSeparateByCommas=2
PUBLIC CONST wdSeparateByDefaultListSeparator=3
PUBLIC CONST wdSeparateByParagraphs=0
PUBLIC CONST wdSeparateByTabs=1
PUBLIC CONST wdSeparatorColon=2
PUBLIC CONST wdSeparatorEmDash=3
PUBLIC CONST wdSeparatorEnDash=4
PUBLIC CONST wdSeparatorHyphen=0
PUBLIC CONST wdSeparatorPeriod=1
PUBLIC CONST wdSerbianCyrillic=3098
PUBLIC CONST wdSerbianLatin=2074
PUBLIC CONST wdSesotho=1072
PUBLIC CONST wdShowBreaksInFrames=11
PUBLIC CONST wdSimplifiedChinese=2052
PUBLIC CONST wdSlovak=1051
PUBLIC CONST wdSlovenian=1060
PUBLIC CONST wdSortByLocation=1
PUBLIC CONST wdSortByName=0
PUBLIC CONST wdSortFieldAlphanumeric=0
PUBLIC CONST wdSortFieldDate=2
PUBLIC CONST wdSortFieldJapanJIS=4
PUBLIC CONST wdSortFieldKoreaKS=6
PUBLIC CONST wdSortFieldNumeric=1
PUBLIC CONST wdSortFieldStroke=5
PUBLIC CONST wdSortFieldSyllable=3
PUBLIC CONST wdSortOrderAscending=0
PUBLIC CONST wdSortOrderDescending=1
PUBLIC CONST wdSortSeparateByCommas=1
PUBLIC CONST wdSortSeparateByDefaultTableSeparator=2
PUBLIC CONST wdSortSeparateByTabs=0
PUBLIC CONST wdSpacingInWholePoints=18
PUBLIC CONST wdSpain=34
PUBLIC CONST wdSpanish=1034
PUBLIC CONST wdSpanishModernSort=3082
PUBLIC CONST wdSpelling=0
PUBLIC CONST wdSpellingCapitalization=2
PUBLIC CONST wdSpellingComplete=4
PUBLIC CONST wdSpellingCorrect=0
PUBLIC CONST wdSpellingCustom=5
PUBLIC CONST wdSpellingError=0
PUBLIC CONST wdSpellingLegal=6
PUBLIC CONST wdSpellingMedical=7
PUBLIC CONST wdSpellingNotInDictionary=1
PUBLIC CONST wdSpellword=0
PUBLIC CONST wdStartOfRangeColumnNumber=16
PUBLIC CONST wdStartOfRangeRowNumber=13
PUBLIC CONST wdStartupPath=8
PUBLIC CONST wdStatisticCharacters=3
PUBLIC CONST wdStatisticCharactersWithSpaces=5
PUBLIC CONST wdStatisticFarEastCharacters=6
PUBLIC CONST wdStatisticLines=1
PUBLIC CONST wdStatisticPages=2
PUBLIC CONST wdStatisticParagraphs=4
PUBLIC CONST wdStatisticWords=0
PUBLIC CONST wdStory=6
PUBLIC CONST wdStyleBlockQuotation=-85
PUBLIC CONST wdStyleBodyText=-67
PUBLIC CONST wdStyleBodyText2=-81
PUBLIC CONST wdStyleBodyText3=-82
PUBLIC CONST wdStyleBodyTextFirstIndent=-78
PUBLIC CONST wdStyleBodyTextFirstIndent2=-79
PUBLIC CONST wdStyleBodyTextIndent=-68
PUBLIC CONST wdStyleBodyTextIndent2=-83
PUBLIC CONST wdStyleBodyTextIndent3=-84
PUBLIC CONST wdStyleCaption=-35
PUBLIC CONST wdStyleClosing=-64
PUBLIC CONST wdStyleCommentReference=-40
PUBLIC CONST wdStyleCommentText=-31
PUBLIC CONST wdStyleDate=-77
PUBLIC CONST wdStyleDefaultParagraphFont=-66
PUBLIC CONST wdStyleEmphasis=-89
PUBLIC CONST wdStyleEndnoteReference=-43
PUBLIC CONST wdStyleEndnoteText=-44
PUBLIC CONST wdStyleEnvelopeAddress=-37
PUBLIC CONST wdStyleEnvelopeReturn=-38
PUBLIC CONST wdStyleFooter=-33
PUBLIC CONST wdStyleFootnoteReference=-39
PUBLIC CONST wdStyleFootnoteText=-30
PUBLIC CONST wdStyleGalleryPath=15
PUBLIC CONST wdStyleHeader=-32
PUBLIC CONST wdStyleHeading1=-2
PUBLIC CONST wdStyleHeading2=-3
PUBLIC CONST wdStyleHeading3=-4
PUBLIC CONST wdStyleHeading4=-5
PUBLIC CONST wdStyleHeading5=-6
PUBLIC CONST wdStyleHeading6=-7
PUBLIC CONST wdStyleHeading7=-8
PUBLIC CONST wdStyleHeading8=-9
PUBLIC CONST wdStyleHeading9=-10
PUBLIC CONST wdStyleHyperlink=-86
PUBLIC CONST wdStyleHyperlinkFollowed=-87
PUBLIC CONST wdStyleIndex1=-11
PUBLIC CONST wdStyleIndex2=-12
PUBLIC CONST wdStyleIndex3=-13
PUBLIC CONST wdStyleIndex4=-14
PUBLIC CONST wdStyleIndex5=-15
PUBLIC CONST wdStyleIndex6=-16
PUBLIC CONST wdStyleIndex7=-17
PUBLIC CONST wdStyleIndex8=-18
PUBLIC CONST wdStyleIndex9=-19
PUBLIC CONST wdStyleIndexHeading=-34
PUBLIC CONST wdStyleLineNumber=-41
PUBLIC CONST wdStyleList=-48
PUBLIC CONST wdStyleList2=-51
PUBLIC CONST wdStyleList3=-52
PUBLIC CONST wdStyleList4=-53
PUBLIC CONST wdStyleList5=-54
PUBLIC CONST wdStyleListBullet=-49
PUBLIC CONST wdStyleListBullet2=-55
PUBLIC CONST wdStyleListBullet3=-56
PUBLIC CONST wdStyleListBullet4=-57
PUBLIC CONST wdStyleListBullet5=-58
PUBLIC CONST wdStyleListContinue=-69
PUBLIC CONST wdStyleListContinue2=-70
PUBLIC CONST wdStyleListContinue3=-71
PUBLIC CONST wdStyleListContinue4=-72
PUBLIC CONST wdStyleListContinue5=-73
PUBLIC CONST wdStyleListNumber=-50
PUBLIC CONST wdStyleListNumber2=-59
PUBLIC CONST wdStyleListNumber3=-60
PUBLIC CONST wdStyleListNumber4=-61
PUBLIC CONST wdStyleListNumber5=-62
PUBLIC CONST wdStyleMacroText=-46
PUBLIC CONST wdStyleMessageHeader=-74
PUBLIC CONST wdStyleNavPane=-90
PUBLIC CONST wdStyleNormal=-1
PUBLIC CONST wdStyleNormalIndent=-29
PUBLIC CONST wdStyleNoteHeading=-80
PUBLIC CONST wdStylePageNumber=-42
PUBLIC CONST wdStylePlainText=-91
PUBLIC CONST wdStyleSalutation=-76
PUBLIC CONST wdStyleSignature=-65
PUBLIC CONST wdStyleStrong=-88
PUBLIC CONST wdStyleSubtitle=-75
PUBLIC CONST wdStyleTOAHeading=-47
PUBLIC CONST wdStyleTOC1=-20
PUBLIC CONST wdStyleTOC2=-21
PUBLIC CONST wdStyleTOC3=-22
PUBLIC CONST wdStyleTOC4=-23
PUBLIC CONST wdStyleTOC5=-24
PUBLIC CONST wdStyleTOC6=-25
PUBLIC CONST wdStyleTOC7=-26
PUBLIC CONST wdStyleTOC8=-27
PUBLIC CONST wdStyleTOC9=-28
PUBLIC CONST wdStyleTableOfAuthorities=-45
PUBLIC CONST wdStyleTableOfFigures=-36
PUBLIC CONST wdStyleTitle=-63
PUBLIC CONST wdStyleTypeCharacter=2
PUBLIC CONST wdStyleTypeParagraph=1
PUBLIC CONST wdSubFontBySize=25
PUBLIC CONST wdSubscriber=1
PUBLIC CONST wdSubscriberBestFormat=0
PUBLIC CONST wdSubscriberPict=4
PUBLIC CONST wdSubscriberRTF=1
PUBLIC CONST wdSubscriberText=2
PUBLIC CONST wdSummaryModeCreateNew=3
PUBLIC CONST wdSummaryModeHideAllButSummary=1
PUBLIC CONST wdSummaryModeHighlight=0
PUBLIC CONST wdSummaryModeInsert=2
PUBLIC CONST wdSuppressBottomSpacing=29
PUBLIC CONST wdSuppressSpBfAfterPgBrk=7
PUBLIC CONST wdSuppressTopSpacing=8
PUBLIC CONST wdSuppressTopSpacingMac5=17
PUBLIC CONST wdSwapBordersFacingPages=12
PUBLIC CONST wdSweden=46
PUBLIC CONST wdSwedish=1053
PUBLIC CONST wdSwissFrench=4108
PUBLIC CONST wdSwissGerman=2055
PUBLIC CONST wdSwissItalian=2064
PUBLIC CONST wdTOAClassic=1
PUBLIC CONST wdTOADistinctive=2
PUBLIC CONST wdTOAFormal=3
PUBLIC CONST wdTOASimple=4
PUBLIC CONST wdTOATemplate=0
PUBLIC CONST wdTOCClassic=1
PUBLIC CONST wdTOCDistinctive=2
PUBLIC CONST wdTOCFancy=3
PUBLIC CONST wdTOCFormal=5
PUBLIC CONST wdTOCModern=4
PUBLIC CONST wdTOCSimple=6
PUBLIC CONST wdTOCTemplate=0
PUBLIC CONST wdTOFCentered=3
PUBLIC CONST wdTOFClassic=1
PUBLIC CONST wdTOFDistinctive=2
PUBLIC CONST wdTOFFormal=4
PUBLIC CONST wdTOFSimple=5
PUBLIC CONST wdTOFTemplate=0
PUBLIC CONST wdTabLeaderDashes=2
PUBLIC CONST wdTabLeaderDots=1
PUBLIC CONST wdTabLeaderHeavy=4
PUBLIC CONST wdTabLeaderLines=3
PUBLIC CONST wdTabLeaderMiddleDot=5
PUBLIC CONST wdTabLeaderSpaces=0
PUBLIC CONST wdTable=15
PUBLIC CONST wdTableFormat3DEffects1=32
PUBLIC CONST wdTableFormat3DEffects2=33
PUBLIC CONST wdTableFormat3DEffects3=34
PUBLIC CONST wdTableFormatApplyAutoFit=16
PUBLIC CONST wdTableFormatApplyBorders=1
PUBLIC CONST wdTableFormatApplyColor=8
PUBLIC CONST wdTableFormatApplyFirstColumn=128
PUBLIC CONST wdTableFormatApplyFont=4
PUBLIC CONST wdTableFormatApplyHeadingRows=32
PUBLIC CONST wdTableFormatApplyLastColumn=256
PUBLIC CONST wdTableFormatApplyLastRow=64
PUBLIC CONST wdTableFormatApplyShading=2
PUBLIC CONST wdTableFormatClassic1=4
PUBLIC CONST wdTableFormatClassic2=5
PUBLIC CONST wdTableFormatClassic3=6
PUBLIC CONST wdTableFormatClassic4=7
PUBLIC CONST wdTableFormatColorful1=8
PUBLIC CONST wdTableFormatColorful2=9
PUBLIC CONST wdTableFormatColorful3=10
[/syntax]
Bien à vous

http://www.dominoarea.org/oguruma/

Les téléphones PORTABLES dans les TGV y en a MARRRE de ces voyageurs qui ne respectent pas les autres ! ARRET DES PORTABLES SVP - Merci

Fumeurs ! respectez les non fumeurs !!!
Fumeurs ! respectez la loi de février 2007 et les lieux publics !!! (ie. hall de gares)
Avatar de l’utilisateur
oguruma
Super V.I.P.
Super V.I.P.
 
Message(s) : 4086
Inscrit(e) le : 16 Déc 2004 à 08:50
Localisation : LILLE

suite car tout ne passe pas en un seul post

Messagepar oguruma » 17 Oct 2005 à 12:40

[syntax="ls"]
PUBLIC CONST wdTableFormatClassic1=4
PUBLIC CONST wdTableFormatClassic2=5
PUBLIC CONST wdTableFormatClassic3=6
PUBLIC CONST wdTableFormatClassic4=7
PUBLIC CONST wdTableFormatColorful1=8
PUBLIC CONST wdTableFormatColorful2=9
PUBLIC CONST wdTableFormatColorful3=10
PUBLIC CONST wdTableFormatColumns1=11
PUBLIC CONST wdTableFormatColumns2=12
PUBLIC CONST wdTableFormatColumns3=13
PUBLIC CONST wdTableFormatColumns4=14
PUBLIC CONST wdTableFormatColumns5=15
PUBLIC CONST wdTableFormatContemporary=35
PUBLIC CONST wdTableFormatElegant=36
PUBLIC CONST wdTableFormatGrid1=16
PUBLIC CONST wdTableFormatGrid2=17
PUBLIC CONST wdTableFormatGrid3=18
PUBLIC CONST wdTableFormatGrid4=19
PUBLIC CONST wdTableFormatGrid5=20
PUBLIC CONST wdTableFormatGrid6=21
PUBLIC CONST wdTableFormatGrid7=22
PUBLIC CONST wdTableFormatGrid8=23
PUBLIC CONST wdTableFormatList1=24
PUBLIC CONST wdTableFormatList2=25
PUBLIC CONST wdTableFormatList3=26
PUBLIC CONST wdTableFormatList4=27
PUBLIC CONST wdTableFormatList5=28
PUBLIC CONST wdTableFormatList6=29
PUBLIC CONST wdTableFormatList7=30
PUBLIC CONST wdTableFormatList8=31
PUBLIC CONST wdTableFormatNone=0
PUBLIC CONST wdTableFormatProfessional=37
PUBLIC CONST wdTableFormatSimple1=1
PUBLIC CONST wdTableFormatSimple2=2
PUBLIC CONST wdTableFormatSimple3=3
PUBLIC CONST wdTableFormatSubtle1=38
PUBLIC CONST wdTableFormatSubtle2=39
PUBLIC CONST wdTaiwan=886
PUBLIC CONST wdTeal=10
PUBLIC CONST wdTempFilePath=13
PUBLIC CONST wdTextConvertersPath=11
PUBLIC CONST wdTextFrameStory=5
PUBLIC CONST wdTextOrientationDownward=3
PUBLIC CONST wdTextOrientationHorizontal=0
PUBLIC CONST wdTextOrientationHorizontalRotatedFarEast=4
PUBLIC CONST wdTextOrientationUpward=2
PUBLIC CONST wdTextOrientationVerticalFarEast=1
PUBLIC CONST wdTexture10Percent=100
PUBLIC CONST wdTexture12Pt5Percent=125
PUBLIC CONST wdTexture15Percent=150
PUBLIC CONST wdTexture17Pt5Percent=175
PUBLIC CONST wdTexture20Percent=200
PUBLIC CONST wdTexture22Pt5Percent=225
PUBLIC CONST wdTexture25Percent=250
PUBLIC CONST wdTexture27Pt5Percent=275
PUBLIC CONST wdTexture2Pt5Percent=25
PUBLIC CONST wdTexture30Percent=300
PUBLIC CONST wdTexture32Pt5Percent=325
PUBLIC CONST wdTexture35Percent=350
PUBLIC CONST wdTexture37Pt5Percent=375
PUBLIC CONST wdTexture40Percent=400
PUBLIC CONST wdTexture42Pt5Percent=425
PUBLIC CONST wdTexture45Percent=450
PUBLIC CONST wdTexture47Pt5Percent=475
PUBLIC CONST wdTexture50Percent=500
PUBLIC CONST wdTexture52Pt5Percent=525
PUBLIC CONST wdTexture55Percent=550
PUBLIC CONST wdTexture57Pt5Percent=575
PUBLIC CONST wdTexture5Percent=50
PUBLIC CONST wdTexture60Percent=600
PUBLIC CONST wdTexture62Pt5Percent=625
PUBLIC CONST wdTexture65Percent=650
PUBLIC CONST wdTexture67Pt5Percent=675
PUBLIC CONST wdTexture70Percent=700
PUBLIC CONST wdTexture72Pt5Percent=725
PUBLIC CONST wdTexture75Percent=750
PUBLIC CONST wdTexture77Pt5Percent=775
PUBLIC CONST wdTexture7Pt5Percent=75
PUBLIC CONST wdTexture80Percent=800
PUBLIC CONST wdTexture82Pt5Percent=825
PUBLIC CONST wdTexture85Percent=850
PUBLIC CONST wdTexture87Pt5Percent=875
PUBLIC CONST wdTexture90Percent=900
PUBLIC CONST wdTexture92Pt5Percent=925
PUBLIC CONST wdTexture95Percent=950
PUBLIC CONST wdTexture97Pt5Percent=975
PUBLIC CONST wdTextureCross=-11
PUBLIC CONST wdTextureDarkCross=-5
PUBLIC CONST wdTextureDarkDiagonalCross=-6
PUBLIC CONST wdTextureDarkDiagonalDown=-3
PUBLIC CONST wdTextureDarkDiagonalUp=-4
PUBLIC CONST wdTextureDarkHorizontal=-1
PUBLIC CONST wdTextureDarkVertical=-2
PUBLIC CONST wdTextureDiagonalCross=-12
PUBLIC CONST wdTextureDiagonalDown=-9
PUBLIC CONST wdTextureDiagonalUp=-10
PUBLIC CONST wdTextureHorizontal=-7
PUBLIC CONST wdTextureNone=0
PUBLIC CONST wdTextureSolid=1000
PUBLIC CONST wdTextureVertical=-8
PUBLIC CONST wdThesaurus=2
PUBLIC CONST wdThousandsSeparator=19
PUBLIC CONST wdTiled=0
PUBLIC CONST wdTimeSeparator=24
PUBLIC CONST wdTitleSentence=4
PUBLIC CONST wdTitleWord=2
PUBLIC CONST wdToggle=9999998
PUBLIC CONST wdToggleCase=5
PUBLIC CONST wdToolsPath=6
PUBLIC CONST wdTraditionalChinese=1028
PUBLIC CONST wdTrailingNone=2
PUBLIC CONST wdTrailingSpace=1
PUBLIC CONST wdTrailingTab=0
PUBLIC CONST wdTransparentMetafiles=10
PUBLIC CONST wdTruncateFontHeight=24
PUBLIC CONST wdTsonga=1073
PUBLIC CONST wdTswana=1074
PUBLIC CONST wdTurkish=1055
PUBLIC CONST wdTurquoise=3
PUBLIC CONST wdTutorialPath=7
PUBLIC CONST wdTypeDocument=0
PUBLIC CONST wdTypeTemplate=1
PUBLIC CONST wdUK=44
PUBLIC CONST wdUS=1
PUBLIC CONST wdUkrainian=1058
PUBLIC CONST wdUndefined=9999999
PUBLIC CONST wdUnderlineDash=7
PUBLIC CONST wdUnderlineDotDash=9
PUBLIC CONST wdUnderlineDotDotDash=10
PUBLIC CONST wdUnderlineDotted=4
PUBLIC CONST wdUnderlineDouble=3
PUBLIC CONST wdUnderlineNone=0
PUBLIC CONST wdUnderlineSingle=1
PUBLIC CONST wdUnderlineThick=6
PUBLIC CONST wdUnderlineWavy=11
PUBLIC CONST wdUnderlineWords=2
PUBLIC CONST wdUpdateSubscriber=6
PUBLIC CONST wdUpperCase=1
PUBLIC CONST wdUsePrinterMetrics=26
PUBLIC CONST wdUserOptionsPath=4
PUBLIC CONST wdUserTemplatesPath=2
PUBLIC CONST wdVenda=1075
PUBLIC CONST wdVenezuela=58
PUBLIC CONST wdVerb=3
PUBLIC CONST wdVerticalPositionRelativeToPage=6
PUBLIC CONST wdVerticalPositionRelativeToTextBoundary=8
PUBLIC CONST wdViolet=12
PUBLIC CONST wdWPJustification=31
PUBLIC CONST wdWPSpaceWidth=30
PUBLIC CONST wdWW6BorderRules=27
PUBLIC CONST wdWhite=8
PUBLIC CONST wdWildcard=1
PUBLIC CONST wdWindow=11
PUBLIC CONST wdWindowDocument=0
PUBLIC CONST wdWindowStateMaximize=1
PUBLIC CONST wdWindowStateMinimize=2
PUBLIC CONST wdWindowStateNormal=0
PUBLIC CONST wdWindowTemplate=1
PUBLIC CONST wdWithInTable=12
PUBLIC CONST wdWord=2
PUBLIC CONST wdWordDocument=0
PUBLIC CONST wdWorkgroupTemplatesPath=3
PUBLIC CONST wdWrapAlways=1
PUBLIC CONST wdWrapAsk=2
PUBLIC CONST wdWrapBoth=0
PUBLIC CONST wdWrapLargest=3
PUBLIC CONST wdWrapLeft=1
PUBLIC CONST wdWrapNever=0
PUBLIC CONST wdWrapNone=3
PUBLIC CONST wdWrapRight=2
PUBLIC CONST wdWrapSquare=0
PUBLIC CONST wdWrapThrough=2
PUBLIC CONST wdWrapTight=1
PUBLIC CONST wdWrapTopBottom=4
PUBLIC CONST wdWrapTrailSpaces=4
PUBLIC CONST wdXhosa=1076
PUBLIC CONST wdYellow=7
PUBLIC CONST wdZoomPercentage=19
PUBLIC CONST wdZulu=1077
[/syntax]
Bien à vous

http://www.dominoarea.org/oguruma/

Les téléphones PORTABLES dans les TGV y en a MARRRE de ces voyageurs qui ne respectent pas les autres ! ARRET DES PORTABLES SVP - Merci

Fumeurs ! respectez les non fumeurs !!!
Fumeurs ! respectez la loi de février 2007 et les lieux publics !!! (ie. hall de gares)
Avatar de l’utilisateur
oguruma
Super V.I.P.
Super V.I.P.
 
Message(s) : 4086
Inscrit(e) le : 16 Déc 2004 à 08:50
Localisation : LILLE


Retour vers Importation/Exportation vers d'autres applications