![]() |
| サイトマップ | |
|
トップ | オブジェクト | プロパティ | メソッド | 定数 |
GraphItem オブジェクトは、SigmaPlot のグラフページをあらわします。ページ内にあるグラフをコレクションとして取得するには、このオブジェクトの GraphPages プロパティを使用します。また、このオブジェクトの CreateWizardGraph メソッドを使うことでグラフを作成することもできます。
NotebookItems コレクション
|
プロパティ:Application , Author ,Comments , DataTable , Expanded , GraphPages , Height , IsCurrentBrowserEntry , IsCurrentItem , IsOpen , ItemType , Keywords , Left , Name , Parent , Saved , Subject , Top , Visible , Width |
メソッド:AddWizardAxis, AddWizardPlot, ApplyLayoutTemplate, ApplyPageTemplate, Clear, Close, Copy, CreateGalleryGraph, CreateGraphFromTemplate, CreateSmoother, CreateWizardGraph, Cut, Export, ImportGraphicFile, ModifyWizardPlot, Open, Paste, PlotEquation, Print, PrintOut, Redo, Save, SelectAll, SetAutoLegend, SetCurrentObjectAttribute, SetPageUnits, SetSelectedObjectsAttribute, Undo |
GraphItem オブジェクトには、ノートブックアイテムの標準的なプロパティとメソッドが用意されています。GraphItem オブジェクトを取得するには、NotebookItems コレクションの Item プロパティまたはコレクションインデックスを使用します。作成する場合は、NotebookItems の Add メソッドを使います。GraphItem オブジェクトには、ItemType プロパティが用意されており、NotebookItems.Add
メソッドで指定する値は 2 になります。
Graph Page 1
" というページの名称を "My Graphs
" に変更します。
ActiveDocument.NotebookItems("Graph Page 1").Name = "My Graphs"
Bar Chart from Slide
" で上書きします。
Dim TemplatePage As String TemplatePage = "Bar Chart for Slide" ActiveDocument.CurrentPageItem.ApplyPageTemplate(TemplatePage)