DocumentBase.ClickAndTypeParagraphStyle, propriété
Obtient ou définit le style de paragraphe par défaut appliqué au texte par la fonctionnalité Cliquer-taper dans le document.
Espace de noms : Microsoft.Office.Tools.Word
Assembly : Microsoft.Office.Tools.Word.v4.0.Utilities (dans Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Syntaxe
'Déclaration
Public Property ClickAndTypeParagraphStyle As Object
public Object ClickAndTypeParagraphStyle { get; set; }
Valeur de propriété
Type : System.Object
Style de paragraphe par défaut appliqué au texte par la fonctionnalité Cliquer-taper dans le document.
Notes
Pour définir cette propriété, spécifiez le nom local du style, un entier, une constante WdBuiltinStyle ou un objet qui représente le style.
Si la propriété InUse pour le style spécifié a la valeur false, une exception est levée.
Exemples
L'exemple de code suivant ajoute du texte aux deux premiers paragraphes, applique le style Texte brut au premier paragraphe, puis affecte le style Texte brut à ClickAndTypeParagraphStyle.Pour utiliser cet exemple, exécutez-le à partir de la classe ThisDocument dans un projet au niveau du document.
Private Sub DocumentClickAndTypeParagraphStyle()
Dim styleName As Object = "Plain Text"
Me.Paragraphs(1).Range.InsertParagraphAfter()
Me.Paragraphs(1).Range.InsertParagraphAfter()
Me.Paragraphs(1).Range.Text = "This is sample text."
Me.Paragraphs(2).Range.Text = "This is sample text."
Me.Paragraphs(1).Range.Style = styleName
If Me.Styles.Item(styleName).InUse Then
Me.ClickAndTypeParagraphStyle = styleName
Else
MessageBox.Show(styleName & " is not in use yet.")
End If
End Sub
private void DocumentClickAndTypeParagraphStyle()
{
object styleName = "Plain Text";
this.Paragraphs[1].Range.InsertParagraphAfter();
this.Paragraphs[1].Range.InsertParagraphAfter();
this.Paragraphs[1].Range.Text = "This is sample text.";
this.Paragraphs[2].Range.Text = "This is sample text.";
this.Paragraphs[1].Range.set_Style(ref styleName);
if (this.Styles.get_Item(ref styleName).InUse)
{
this.ClickAndTypeParagraphStyle = styleName;
}
else
{
MessageBox.Show(styleName + " is not in use yet.");
}
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.