BuildingBlockGalleryContentControl.BuildingBlockCategory A propriedade (sistema de 2007)
Obtém ou define a categoria dos blocos de construção exibidos no BuildingBlockGalleryContentControl.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v9.0 (em Microsoft.Office.Tools.Word.v9.0.dll)
Sintaxe
Public Property BuildingBlockCategory As String
Dim instance As BuildingBlockGalleryContentControl
Dim value As String
value = instance.BuildingBlockCategory
instance.BuildingBlockCategory = value
public string BuildingBlockCategory { get; set; }
Valor de propriedade
Tipo: System.String
A categoria dos blocos de construção exibidos no BuildingBlockGalleryContentControl.
Comentários
Todos os blocos de construção pertencer a uma categoria e uma galeria.Use o BuildingBlockCategory propriedade para especificar a categoria dos blocos de construção que são exibidos pela BuildingBlockGalleryContentControl. Você pode conjunto o valor dessa propriedade para o Interno or Geral categorias definidas pelo Microsoft Office palavra, ou você podem especificar uma categoria personalizada.
Para especificar qual galeria dos blocos de construção para exibir o BuildingBlockGalleryContentControl, use o BuildingBlockType propriedade.
Exemplos
O exemplo de código a seguir adiciona um novo BuildingBlockGalleryContentControl para o início do documento. The BuildingBlockGalleryContentControl Exibe os blocos de construção equação que são fornecidos pelo Microsoft Office palavra. O exemplo define o BuildingBlockCategory propriedade para o Interno categoria.
Esta versão é para uma personalização em nível de documento.Para usar esse código, cole-o no ThisDocument classe em seu projeto e a telefonar a AddBuildingBlockControlAtSelection método a partir do ThisDocument_Startup método.
Dim buildingBlockGalleryControl1 As Microsoft.Office.Tools.Word.BuildingBlockGalleryContentControl
PrivateSub AddBuildingBlockGalleryControlAtSelection()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Me.Paragraphs(1).Range.Select()
buildingBlockGalleryControl1 = Me.Controls.AddBuildingBlockGalleryContentControl( _
"buildingBlockGalleryControl1")
With buildingBlockGalleryControl1
.PlaceholderText = "Choose an equation"
.BuildingBlockCategory = "Built-In"
.BuildingBlockType = Word.WdBuildingBlockTypes.wdTypeEquations
EndWithEndSub
private Microsoft.Office.Tools.Word.BuildingBlockGalleryContentControl buildingBlockControl1;
privatevoid AddBuildingBlockControlAtSelection()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
this.Paragraphs[1].Range.Select();
buildingBlockControl1 = this.Controls.AddBuildingBlockGalleryContentControl(
"buildingBlockControl1");
buildingBlockControl1.PlaceholderText = "Choose an equation";
buildingBlockControl1.BuildingBlockCategory = "Built-In";
buildingBlockControl1.BuildingBlockType = Word.WdBuildingBlockTypes.wdTypeEquations;
}
Esta versão é para um suplemento no nível de aplicativo.Para usar esse código, cole-o no ThisAddIn classe em seu projeto e a telefonar a AddBuildingBlockControlAtSelection método a partir do ThisAddIn_Startup método.
Dim buildingBlockGalleryControl1 As BuildingBlockGalleryContentControl
PrivateSub AddBuildingBlockGalleryControlAtSelection()
IfMe.Application.ActiveDocument IsNothingThenReturnEndIfDim vstoDoc As Document = Me.Application.ActiveDocument.GetVstoObject()
vstoDoc.Paragraphs(1).Range.InsertParagraphBefore()
vstoDoc.Paragraphs(1).Range.Select()
buildingBlockGalleryControl1 = vstoDoc.Controls.AddBuildingBlockGalleryContentControl( _
"buildingBlockGalleryControl1")
With buildingBlockGalleryControl1
.PlaceholderText = "Choose an equation"
.BuildingBlockCategory = "Built-In"
.BuildingBlockType = Word.WdBuildingBlockTypes.wdTypeEquations
EndWithEndSub
private Microsoft.Office.Tools.Word.BuildingBlockGalleryContentControl buildingBlockControl1;
privatevoid AddBuildingBlockControlAtSelection()
{
if (this.Application.ActiveDocument == null)
return;
Document vstoDoc = this.Application.ActiveDocument.GetVstoObject();
vstoDoc.Paragraphs[1].Range.InsertParagraphBefore();
vstoDoc.Paragraphs[1].Range.Select();
buildingBlockControl1 = vstoDoc.Controls.AddBuildingBlockGalleryContentControl(
"buildingBlockControl1");
buildingBlockControl1.PlaceholderText = "Choose an equation";
buildingBlockControl1.BuildingBlockCategory = "Built-In";
buildingBlockControl1.BuildingBlockType = Word.WdBuildingBlockTypes.wdTypeEquations;
}
Permissões
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de códigos parcialmente Confiável.
Consulte também
Referência
BuildingBlockGalleryContentControl Classe