-
Notifications
You must be signed in to change notification settings - Fork 13
/
Paragraph.xml
2518 lines (2518 loc) · 138 KB
/
Paragraph.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="Paragraph" FullName="Microsoft.Office.Interop.Word.Paragraph">
<TypeSignature Language="C#" Value="public interface Paragraph" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract Paragraph" />
<TypeSignature Language="DocId" Value="T:Microsoft.Office.Interop.Word.Paragraph" />
<TypeSignature Language="VB.NET" Value="Public Interface Paragraph" />
<TypeSignature Language="C++ CLI" Value="public interface class Paragraph" />
<TypeSignature Language="F#" Value="type Paragraph = interface" />
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.Guid("00020957-0000-0000-C000-000000000046")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Runtime.InteropServices.TypeLibType(4288)</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Represents a single paragraph in a selection, range, or document.</summary>
<remarks>
<para>The <b>Paragraph</b> object is a member of the <see cref="T:Microsoft.Office.Interop.Word.Paragraphs" /> collection. The <b>Paragraphs</b> collection includes all the paragraphs in a selection, range, or document.</para>
<para>Use <b>Paragraphs</b>(<paramref name="index" />), where <paramref name="index" /> is the index number, to return a single <b>Paragraph</b> object.</para>
<para>Use the <see cref="M:Microsoft.Office.Interop.Word.Paragraphs.Add(System.Object@)" />, <b>InsertParagraph</b>, <b>InsertParagraphAfter</b>, or <b>InsertParagraphBefore</b> method to add a new, blank paragraph to a document.</para>
<para />
</remarks>
</Docs>
<Members>
<Member MemberName="AddSpaceBetweenFarEastAndAlpha">
<MemberSignature Language="C#" Value="public int AddSpaceBetweenFarEastAndAlpha { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 AddSpaceBetweenFarEastAndAlpha" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.AddSpaceBetweenFarEastAndAlpha" />
<MemberSignature Language="VB.NET" Value="Public Property AddSpaceBetweenFarEastAndAlpha As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int AddSpaceBetweenFarEastAndAlpha { int get(); void set(int value); };" />
<MemberSignature Language="F#" Value="member this.AddSpaceBetweenFarEastAndAlpha : int with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.AddSpaceBetweenFarEastAndAlpha" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(121)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(121)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(121)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if Microsoft Word is set to automatically add spaces between Japanese and Latin text for the specified paragraphs.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if Word is set to automatically add spaces between Japanese and Latin text for the specified paragraphs, and <b>False</b> if not. Set the value of this property to <b>True</b> or <b>False</b> to enable or disable the functionality.</para>
<para>This property returns <b>wdUndefined</b> if it’s set to <b>True</b> for only some of the specified paragraphs.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="AddSpaceBetweenFarEastAndDigit">
<MemberSignature Language="C#" Value="public int AddSpaceBetweenFarEastAndDigit { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 AddSpaceBetweenFarEastAndDigit" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.AddSpaceBetweenFarEastAndDigit" />
<MemberSignature Language="VB.NET" Value="Public Property AddSpaceBetweenFarEastAndDigit As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int AddSpaceBetweenFarEastAndDigit { int get(); void set(int value); };" />
<MemberSignature Language="F#" Value="member this.AddSpaceBetweenFarEastAndDigit : int with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.AddSpaceBetweenFarEastAndDigit" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(122)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(122)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(122)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if Microsoft Word is set to automatically add spaces between Japanese text and numbers for the specified paragraphs.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if Word is set to automatically add spaces between Japanese text and numbers for the specified paragraphs, and <b>False</b> if not. </para>
<para>This property returns <b>wdUndefined</b> if it’s set to <b>True</b> for only some of the specified paragraphs.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="Alignment">
<MemberSignature Language="C#" Value="public Microsoft.Office.Interop.Word.WdParagraphAlignment Alignment { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype Microsoft.Office.Interop.Word.WdParagraphAlignment Alignment" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.Alignment" />
<MemberSignature Language="VB.NET" Value="Public Property Alignment As WdParagraphAlignment" />
<MemberSignature Language="C++ CLI" Value="public:
 property Microsoft::Office::Interop::Word::WdParagraphAlignment Alignment { Microsoft::Office::Interop::Word::WdParagraphAlignment get(); void set(Microsoft::Office::Interop::Word::WdParagraphAlignment value); };" />
<MemberSignature Language="F#" Value="member this.Alignment : Microsoft.Office.Interop.Word.WdParagraphAlignment with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.Alignment" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(101)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(101)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(101)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Office.Interop.Word.WdParagraphAlignment</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets a <see cref="T:Microsoft.Office.Interop.Word.WdParagraphAlignment" /> constant that represents the alignment for the specified paragraphs.</summary>
<value>To be added.</value>
<remarks>
<para>
<b>WdParagraphAlignment</b> can be one of the following constants: </para>
<para>
<b>wdAlignParagraphCenter </b>
</para>
<para>
<b>wdAlignParagraphDistribute </b>
</para>
<para>
<b>wdAlignParagraphJustify </b>
</para>
<para>
<b>wdAlignParagraphJustifyHi </b>
</para>
<para>
<b>wdAlignParagraphJustifyLow </b>
</para>
<para>
<b>wdAlignParagraphJustifyMed </b>
</para>
<para>
<b>wdAlignParagraphLeft </b>
</para>
<para>
<b>wdAlignParagraphRight </b>
</para>
<para>
<b>wdAlignParagraphThaiJustify</b>
</para>
<para>Some of the constants listed above may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="Application">
<MemberSignature Language="C#" Value="public Microsoft.Office.Interop.Word.Application Application { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Office.Interop.Word.Application Application" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.Application" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Application As Application" />
<MemberSignature Language="C++ CLI" Value="public:
 property Microsoft::Office::Interop::Word::Application ^ Application { Microsoft::Office::Interop::Word::Application ^ get(); };" />
<MemberSignature Language="F#" Value="member this.Application : Microsoft.Office.Interop.Word.Application" Usage="Microsoft.Office.Interop.Word.Paragraph.Application" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(1000)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(1000)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Office.Interop.Word.Application</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns a <see cref="T:Microsoft.Office.Interop.Word.Application" /> object that represents the Microsoft Word application.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AutoAdjustRightIndent">
<MemberSignature Language="C#" Value="public int AutoAdjustRightIndent { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 AutoAdjustRightIndent" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.AutoAdjustRightIndent" />
<MemberSignature Language="VB.NET" Value="Public Property AutoAdjustRightIndent As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int AutoAdjustRightIndent { int get(); void set(int value); };" />
<MemberSignature Language="F#" Value="member this.AutoAdjustRightIndent : int with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.AutoAdjustRightIndent" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(124)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(124)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(124)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if Microsoft Word is set to automatically adjust the right indent for the specified paragraphs if you’ve specified a set number of characters per line.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if Word is set to automatically adjust the right indent for the specified paragraphs if you’ve specified a set number of characters per line, and <b>False</b> if not. Set the property value to <b>True</b> or <b>False</b> to enable or disable the functionality.</para>
<para>This property returns <b>wdUndefined</b> if the <b>AutoAdjustRightIndent</b> property is set to <b>True</b> for only some of the specified paragraphs.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="BaseLineAlignment">
<MemberSignature Language="C#" Value="public Microsoft.Office.Interop.Word.WdBaselineAlignment BaseLineAlignment { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype Microsoft.Office.Interop.Word.WdBaselineAlignment BaseLineAlignment" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.BaseLineAlignment" />
<MemberSignature Language="VB.NET" Value="Public Property BaseLineAlignment As WdBaselineAlignment" />
<MemberSignature Language="C++ CLI" Value="public:
 property Microsoft::Office::Interop::Word::WdBaselineAlignment BaseLineAlignment { Microsoft::Office::Interop::Word::WdBaselineAlignment get(); void set(Microsoft::Office::Interop::Word::WdBaselineAlignment value); };" />
<MemberSignature Language="F#" Value="member this.BaseLineAlignment : Microsoft.Office.Interop.Word.WdBaselineAlignment with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.BaseLineAlignment" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(123)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(123)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(123)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Office.Interop.Word.WdBaselineAlignment</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets a <see cref="T:Microsoft.Office.Interop.Word.WdBaselineAlignment" /> constant that represents the vertical position of fonts on a line.</summary>
<value>To be added.</value>
<remarks>
<para>
<b>WdBaselineAlignment</b> can be one of the following constants: </para>
<para>
<b>wdBaselineAlignAuto </b>
</para>
<para>
<b>wdBaselineAlignCenter </b>
</para>
<para>
<b>wdBaselineAlignTop </b>
</para>
<para>
<b>wdBaselineAlignBaseline </b>
</para>
<para>
<b>wdBaselineAlignFarEast50</b>
</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="Borders">
<MemberSignature Language="C#" Value="public Microsoft.Office.Interop.Word.Borders Borders { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Office.Interop.Word.Borders Borders" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.Borders" />
<MemberSignature Language="VB.NET" Value="Public Property Borders As Borders" />
<MemberSignature Language="C++ CLI" Value="public:
 property Microsoft::Office::Interop::Word::Borders ^ Borders { Microsoft::Office::Interop::Word::Borders ^ get(); void set(Microsoft::Office::Interop::Word::Borders ^ value); };" />
<MemberSignature Language="F#" Value="member this.Borders : Microsoft.Office.Interop.Word.Borders with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.Borders" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(1100)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(1100)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(1100)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Office.Interop.Word.Borders</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns a <see cref="T:Microsoft.Office.Interop.Word.Borders" /> collection that represents all the borders for the specified object.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CharacterUnitFirstLineIndent">
<MemberSignature Language="C#" Value="public float CharacterUnitFirstLineIndent { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float32 CharacterUnitFirstLineIndent" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.CharacterUnitFirstLineIndent" />
<MemberSignature Language="VB.NET" Value="Public Property CharacterUnitFirstLineIndent As Single" />
<MemberSignature Language="C++ CLI" Value="public:
 property float CharacterUnitFirstLineIndent { float get(); void set(float value); };" />
<MemberSignature Language="F#" Value="member this.CharacterUnitFirstLineIndent : single with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.CharacterUnitFirstLineIndent" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(128)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(128)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(128)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets the value (in characters) for a first-line or hanging indent.</summary>
<value>To be added.</value>
<remarks>
<para>Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="CharacterUnitLeftIndent">
<MemberSignature Language="C#" Value="public float CharacterUnitLeftIndent { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float32 CharacterUnitLeftIndent" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.CharacterUnitLeftIndent" />
<MemberSignature Language="VB.NET" Value="Public Property CharacterUnitLeftIndent As Single" />
<MemberSignature Language="C++ CLI" Value="public:
 property float CharacterUnitLeftIndent { float get(); void set(float value); };" />
<MemberSignature Language="F#" Value="member this.CharacterUnitLeftIndent : single with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.CharacterUnitLeftIndent" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(127)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(127)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(127)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets the left indent value (in characters) for the specified paragraphs.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CharacterUnitRightIndent">
<MemberSignature Language="C#" Value="public float CharacterUnitRightIndent { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float32 CharacterUnitRightIndent" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.CharacterUnitRightIndent" />
<MemberSignature Language="VB.NET" Value="Public Property CharacterUnitRightIndent As Single" />
<MemberSignature Language="C++ CLI" Value="public:
 property float CharacterUnitRightIndent { float get(); void set(float value); };" />
<MemberSignature Language="F#" Value="member this.CharacterUnitRightIndent : single with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.CharacterUnitRightIndent" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(126)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(126)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(126)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets the right indent value (in characters) for the specified paragraphs.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CloseUp">
<MemberSignature Language="C#" Value="public void CloseUp ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void CloseUp() runtime managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Office.Interop.Word.Paragraph.CloseUp" />
<MemberSignature Language="VB.NET" Value="Public Sub CloseUp ()" />
<MemberSignature Language="C++ CLI" Value="public:
 void CloseUp();" />
<MemberSignature Language="F#" Value="abstract member CloseUp : unit -> unit" Usage="paragraph.CloseUp " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(301)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Removes any spacing before the specified paragraphs.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CollapsedState">
<MemberSignature Language="C#" Value="public bool CollapsedState { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool CollapsedState" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.CollapsedState" />
<MemberSignature Language="VB.NET" Value="Public Property CollapsedState As Boolean" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool CollapsedState { bool get(); void set(bool value); };" />
<MemberSignature Language="F#" Value="member this.CollapsedState : bool with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.CollapsedState" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(1203)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(1203)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(1203)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets whether the specified paragraph is currently in a collapsed state. Read-write <b>Boolean</b> (<b>bool</b> in C#).</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CollapseHeadingByDefault">
<MemberSignature Language="C#" Value="public bool CollapseHeadingByDefault { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool CollapseHeadingByDefault" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.CollapseHeadingByDefault" />
<MemberSignature Language="VB.NET" Value="Public Property CollapseHeadingByDefault As Boolean" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool CollapseHeadingByDefault { bool get(); void set(bool value); };" />
<MemberSignature Language="F#" Value="member this.CollapseHeadingByDefault : bool with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.CollapseHeadingByDefault" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(1204)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(1204)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(1204)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets whether the specified paragraph is collapsed by default when the document loads. Read-write <b>Boolean</b> (<b>bool</b> in C#).</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Creator">
<MemberSignature Language="C#" Value="public int Creator { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 Creator" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.Creator" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Creator As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int Creator { int get(); };" />
<MemberSignature Language="F#" Value="member this.Creator : int" Usage="Microsoft.Office.Interop.Word.Paragraph.Creator" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(1001)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(1001)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns a 32-bit integer that indicates the application in which the specified object was created.</summary>
<value>To be added.</value>
<remarks>
<para>If the specified object was created in Microsoft Word, this property returns the hexadecimal number 4D535744, which represents the string "MSWD." This value can also be represented by the constant <b>wdCreatorCode</b>.</para>
<para>The <b>Creator</b> property was primarily designed to be used on the Macintosh, where each application has a four-character creator code. For example, Microsoft Word has the creator code MSWD. For additional information about this property, consult the language reference Help included with Microsoft Office Macintosh Edition.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="DisableLineHeightGrid">
<MemberSignature Language="C#" Value="public int DisableLineHeightGrid { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 DisableLineHeightGrid" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.DisableLineHeightGrid" />
<MemberSignature Language="VB.NET" Value="Public Property DisableLineHeightGrid As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int DisableLineHeightGrid { int get(); void set(int value); };" />
<MemberSignature Language="F#" Value="member this.DisableLineHeightGrid : int with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.DisableLineHeightGrid" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(125)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(125)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(125)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if Microsoft Word aligns characters in the specified paragraphs to the line grid when a set number of lines per page is specified.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if Word aligns characters in the specified paragraphs to the line grid when a set number of lines per page is specified, and <b>False</b> if not. Set the property value to <b>True</b> or <b>False</b> to enable or disable the functionality.</para>
<para>This property returns <b>wdUndefined</b> if the <b>DisableLineHeightGrid</b> property is set to <b>True</b> for only some of the specified paragraphs.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="DropCap">
<MemberSignature Language="C#" Value="public Microsoft.Office.Interop.Word.DropCap DropCap { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Office.Interop.Word.DropCap DropCap" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.DropCap" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property DropCap As DropCap" />
<MemberSignature Language="C++ CLI" Value="public:
 property Microsoft::Office::Interop::Word::DropCap ^ DropCap { Microsoft::Office::Interop::Word::DropCap ^ get(); };" />
<MemberSignature Language="F#" Value="member this.DropCap : Microsoft.Office.Interop.Word.DropCap" Usage="Microsoft.Office.Interop.Word.Paragraph.DropCap" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(13)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(13)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Office.Interop.Word.DropCap</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns a <see cref="T:Microsoft.Office.Interop.Word.DropCap" /> object that represents a dropped capital letter for the specified paragraph.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="FarEastLineBreakControl">
<MemberSignature Language="C#" Value="public int FarEastLineBreakControl { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 FarEastLineBreakControl" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.FarEastLineBreakControl" />
<MemberSignature Language="VB.NET" Value="Public Property FarEastLineBreakControl As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int FarEastLineBreakControl { int get(); void set(int value); };" />
<MemberSignature Language="F#" Value="member this.FarEastLineBreakControl : int with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.FarEastLineBreakControl" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(117)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(117)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(117)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if Microsoft Word applies East Asian line-breaking rules to the specified paragraphs.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if Word applies East Asian line-breaking rules to the specified paragraphs, and <b>False</b> if not. Set the property value to <b>True</b> or <b>False</b> to enable or disable the functionality.</para>
<para>This property returns <b>wdUndefined</b> if the <b>FarEastLineBreakControl</b> property is set to <b>True</b> for only some of the specified paragraphs.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="FirstLineIndent">
<MemberSignature Language="C#" Value="public float FirstLineIndent { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float32 FirstLineIndent" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.FirstLineIndent" />
<MemberSignature Language="VB.NET" Value="Public Property FirstLineIndent As Single" />
<MemberSignature Language="C++ CLI" Value="public:
 property float FirstLineIndent { float get(); void set(float value); };" />
<MemberSignature Language="F#" Value="member this.FirstLineIndent : single with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.FirstLineIndent" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(108)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(108)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(108)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets the value (in points) for a first line or hanging indent.</summary>
<value>To be added.</value>
<remarks>
<para>Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="Format">
<MemberSignature Language="C#" Value="public Microsoft.Office.Interop.Word.ParagraphFormat Format { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Office.Interop.Word.ParagraphFormat Format" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.Format" />
<MemberSignature Language="VB.NET" Value="Public Property Format As ParagraphFormat" />
<MemberSignature Language="C++ CLI" Value="public:
 property Microsoft::Office::Interop::Word::ParagraphFormat ^ Format { Microsoft::Office::Interop::Word::ParagraphFormat ^ get(); void set(Microsoft::Office::Interop::Word::ParagraphFormat ^ value); };" />
<MemberSignature Language="F#" Value="member this.Format : Microsoft.Office.Interop.Word.ParagraphFormat with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.Format" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(1102)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(1102)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(1102)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Office.Interop.Word.ParagraphFormat</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets a <see cref="T:Microsoft.Office.Interop.Word.ParagraphFormat" /> object that represents the formatting of the specified paragraph or paragraphs.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="HalfWidthPunctuationOnTopOfLine">
<MemberSignature Language="C#" Value="public int HalfWidthPunctuationOnTopOfLine { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 HalfWidthPunctuationOnTopOfLine" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.HalfWidthPunctuationOnTopOfLine" />
<MemberSignature Language="VB.NET" Value="Public Property HalfWidthPunctuationOnTopOfLine As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int HalfWidthPunctuationOnTopOfLine { int get(); void set(int value); };" />
<MemberSignature Language="F#" Value="member this.HalfWidthPunctuationOnTopOfLine : int with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.HalfWidthPunctuationOnTopOfLine" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(120)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(120)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(120)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if Microsoft Word changes punctuation symbols at the beginning of a line to half-width characters for the specified paragraphs.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if Word changes punctuation symbols at the beginning of a line to half-width characters for the specified paragraphs, and <b>False</b> if not. Set the property value to <b>True</b> or <b>False</b> to enable or disable the functionality.</para>
<para>This property returns <b>wdUndefined</b> if it’s set to <b>True</b> for only some of the specified paragraphs.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="HangingPunctuation">
<MemberSignature Language="C#" Value="public int HangingPunctuation { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 HangingPunctuation" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.HangingPunctuation" />
<MemberSignature Language="VB.NET" Value="Public Property HangingPunctuation As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int HangingPunctuation { int get(); void set(int value); };" />
<MemberSignature Language="F#" Value="member this.HangingPunctuation : int with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.HangingPunctuation" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(119)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(119)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(119)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if hanging punctuation is enabled for the specified paragraphs.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if hanging punctuation is enabled for the specified paragraphs, and <b>False</b> if not. Set the property value to <b>True</b> or <b>False</b> to enable or disable the functionality.</para>
<para>This property returns <b>wdUndefined</b> if it’s set to <b>True</b> for only some of the specified paragraphs.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="Hyphenation">
<MemberSignature Language="C#" Value="public int Hyphenation { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 Hyphenation" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.Hyphenation" />
<MemberSignature Language="VB.NET" Value="Public Property Hyphenation As Integer" />
<MemberSignature Language="C++ CLI" Value="public:
 property int Hyphenation { int get(); void set(int value); };" />
<MemberSignature Language="F#" Value="member this.Hyphenation : int with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.Hyphenation" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(113)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(113)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(113)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if the specified paragraphs are included in automatic hyphenation.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if the specified paragraphs are included in automatic hyphenation, and <b>False</b> if the specified paragraphs are to be excluded from automatic hyphenation. Set the property value to <b>True</b> or <b>False</b> to enable or disable the functionality.</para>
<para>Possible return values are <b>True</b>, <b>False</b> or <b>wdUndefined</b>.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="ID">
<MemberSignature Language="C#" Value="public string ID { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string ID" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.ID" />
<MemberSignature Language="VB.NET" Value="Public Property ID As String" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::String ^ ID { System::String ^ get(); void set(System::String ^ value); };" />
<MemberSignature Language="F#" Value="member this.ID : string with get, set" Usage="Microsoft.Office.Interop.Word.Paragraph.ID" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(204)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(204)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>set: System.Runtime.InteropServices.DispId(204)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns or sets the identifying label for the specified object when the current document is saved as a Web page.</summary>
<value>To be added.</value>
<remarks>
<para>With the exception of the <see cref="T:Microsoft.Office.Interop.Word.Editor" /> object, you can use a label as a hyperlink reference from other Web pages or from within the current document.</para>
<para>Microsoft Word does not store the <b>ID</b> property setting for a <see cref="T:Microsoft.Office.Interop.Word.Range" /> object. If you set the <b>ID</b> property and then return its value, the returned value will be an empty <b>string</b>.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="Indent">
<MemberSignature Language="C#" Value="public void Indent ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Indent() runtime managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Office.Interop.Word.Paragraph.Indent" />
<MemberSignature Language="VB.NET" Value="Public Sub Indent ()" />
<MemberSignature Language="C++ CLI" Value="public:
 void Indent();" />
<MemberSignature Language="F#" Value="abstract member Indent : unit -> unit" Usage="paragraph.Indent " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(333)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Indents one or more paragraphs by one level.</summary>
<remarks>
<para>Using this method is equivalent to clicking the Increase Indent button on the Formatting toolbar.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="IndentCharWidth">
<MemberSignature Language="C#" Value="public void IndentCharWidth (short Count);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void IndentCharWidth([in]int16 Count) runtime managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Office.Interop.Word.Paragraph.IndentCharWidth(System.Int16)" />
<MemberSignature Language="VB.NET" Value="Public Sub IndentCharWidth (Count As Short)" />
<MemberSignature Language="C++ CLI" Value="public:
 void IndentCharWidth(short Count);" />
<MemberSignature Language="F#" Value="abstract member IndentCharWidth : int16 -> unit" Usage="paragraph.IndentCharWidth Count" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(320)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Count" Type="System.Int16" />
</Parameters>
<Docs>
<param name="Count">Required <b>Integer</b>. The number of characters by which the specified paragraphs are to be indented.</param>
<summary>Indents one or more paragraphs by a specified number of characters.</summary>
<remarks>
<para>Using this method is equivalent to clicking the Increase Indent button on the Formatting toolbar.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="IndentFirstLineCharWidth">
<MemberSignature Language="C#" Value="public void IndentFirstLineCharWidth (short Count);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void IndentFirstLineCharWidth([in]int16 Count) runtime managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Office.Interop.Word.Paragraph.IndentFirstLineCharWidth(System.Int16)" />
<MemberSignature Language="VB.NET" Value="Public Sub IndentFirstLineCharWidth (Count As Short)" />
<MemberSignature Language="C++ CLI" Value="public:
 void IndentFirstLineCharWidth(short Count);" />
<MemberSignature Language="F#" Value="abstract member IndentFirstLineCharWidth : int16 -> unit" Usage="paragraph.IndentFirstLineCharWidth Count" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(322)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Count" Type="System.Int16" />
</Parameters>
<Docs>
<param name="Count">Required <b>Integer</b>. The number of characters by which the specified paragraphs are to be indented.</param>
<summary>Indents one or more paragraphs by a specified number of characters.</summary>
<remarks>
<para>Using this method is equivalent to clicking the Increase Indent button on the Formatting toolbar.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="IsStyleSeparator">
<MemberSignature Language="C#" Value="public bool IsStyleSeparator { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsStyleSeparator" />
<MemberSignature Language="DocId" Value="P:Microsoft.Office.Interop.Word.Paragraph.IsStyleSeparator" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property IsStyleSeparator As Boolean" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool IsStyleSeparator { bool get(); };" />
<MemberSignature Language="F#" Value="member this.IsStyleSeparator : bool" Usage="Microsoft.Office.Interop.Word.Paragraph.IsStyleSeparator" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(134)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>get: System.Runtime.InteropServices.DispId(134)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Determines if a paragraph contains a special hidden paragraph mark that allows Microsoft Word to appear to join paragraphs of different paragraph styles.</summary>
<value>To be added.</value>
<remarks>
<para>This property returns <b>True</b> if a paragraph contains a special hidden paragraph mark that allows Word to appear to join paragraphs of different paragraph styles, and <b>False</b> if not.</para>
<para />
</remarks>
</Docs>
</Member>
<Member MemberName="JoinList">
<MemberSignature Language="C#" Value="public void JoinList ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void JoinList() runtime managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Office.Interop.Word.Paragraph.JoinList" />
<MemberSignature Language="VB.NET" Value="Public Sub JoinList ()" />
<MemberSignature Language="C++ CLI" Value="public:
 void JoinList();" />
<MemberSignature Language="F#" Value="abstract member JoinList : unit -> unit" Usage="paragraph.JoinList " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Office.Interop.Word</AssemblyName>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.DispId(339)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Joins a list paragraph with the closest list above or below the specified paragraph.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="KeepTogether">