Metodo DocumentBase.SetLetterContent
Spazio dei nomi: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Sintassi
'Dichiarazione
Public Sub SetLetterContent ( _
ByRef letterContent As Object _
)
public void SetLetterContent(
ref Object letterContent
)
Parametri
- letterContent
Tipo: System.Object%
Esempi
Nell'esempio di codice riportato di seguito viene illustrato come creare un nuovo stile di tabella e come aggiungerlo al modello collegato al documento utilizzando il metodo SetDefaultTableStyle. Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.
Private Sub DocumentSetDefaultTableStyle()
' Create a new table style.
Dim newStyle As Word.Style = Me.Styles.Add("TableStyle1", _
Word.WdStyleType.wdStyleTypeTable)
' Set a property of the new style.
newStyle.Font.Color = Word.WdColor.wdColorBlueGray
' Set this style as the default for tables in the document.
Dim inputStyle As Object = newStyle
Me.SetDefaultTableStyle(inputStyle, True)
End Sub
private void DocumentSetDefaultTableStyle()
{
// Create a new table style.
object tableStyle = Word.WdStyleType.wdStyleTypeTable;
Word.Style newStyle = this.Styles.Add("TableStyle1",
ref tableStyle);
// Set a property of the new style.
newStyle.Font.Color = Word.WdColor.wdColorBlueGray;
// Set this style as the default for tables in the document.
object inputStyle = newStyle;
this.SetDefaultTableStyle(ref inputStyle, true);
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.