com.aspose.words
Class TaskPaneCollection

java.lang.Object
  extended by BaseWebExtensionCollection
      extended by com.aspose.words.TaskPaneCollection
All Implemented Interfaces:
java.lang.Iterable

public class TaskPaneCollection 
extends BaseWebExtensionCollection

Specifies a list of persisted task pane objects.

Example:

Shows how to create add-ins inside the document.
Document doc = new Document();

// Create taskpane with "MyScript" add-in which will be used by the document
TaskPane myScriptTaskPane = new TaskPane();
doc.getWebExtensionTaskPanes().add(myScriptTaskPane);

// Define task pane location when the document opens
myScriptTaskPane.setDockState(TaskPaneDockState.RIGHT);
myScriptTaskPane.isVisible(true);
myScriptTaskPane.setWidth(300.0);
myScriptTaskPane.isLocked(true);
// Use this option if you have several task panes
myScriptTaskPane.setRow(1);

// Add "MyScript Math Sample" add-in which will be displayed inside task pane
WebExtension webExtension = myScriptTaskPane.getWebExtension();

// Application Id from store
webExtension.getReference().setId("WA104380646");
// The current version of the application used
webExtension.getReference().setVersion("1.0.0.0");
// Type of marketplace
webExtension.getReference().setStoreType(WebExtensionStoreType.OMEX);
// Marketplace based on your locale
webExtension.getReference().setStore(Locale.getDefault().getDisplayName());

webExtension.getProperties().add(new WebExtensionProperty("MyScript", "MyScript Math Sample"));
webExtension.getBindings().add(new WebExtensionBinding("MyScript", WebExtensionBindingType.TEXT, "104380646"));

// Use this option if you need to block web extension from any action
webExtension.isFrozen(false);

doc.save(getArtifactsDir() + "Document.WebExtension.docx");

Property Getters/Setters Summary
intgetCount()→ inherited from BaseWebExtensionCollection<TaskPane>
          
TaskPaneget(int index)→ inherited from BaseWebExtensionCollection<TaskPane>
          
 
Method Summary
voidclear()→ inherited from BaseWebExtensionCollection<TaskPane>
          
java.util.Iterator<TaskPane>iterator()→ inherited from BaseWebExtensionCollection<TaskPane>
          
voidremove(int index)→ inherited from BaseWebExtensionCollection<TaskPane>
          
 

Property Getters/Setters Detail

getCount

→ inherited from BaseWebExtensionCollection<TaskPane>
public int getCount()

get

→ inherited from BaseWebExtensionCollection<TaskPane>
public TaskPane get(int index)

Method Detail

clear

→ inherited from BaseWebExtensionCollection<TaskPane>
public void clear()

iterator

→ inherited from BaseWebExtensionCollection<TaskPane>
public java.util.Iterator<TaskPaneiterator()

remove

→ inherited from BaseWebExtensionCollection<TaskPane>
public void remove(int index)

See Also:
          Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
          Aspose.Words Support Forum - our preferred method of support.