LoginSignup
0
1

More than 5 years have passed since last update.

発掘 オブジェクト モデル (Publisher VBA リファレンス) リスト

Last updated at Posted at 2018-10-17

新版について

MSDN版をもとに現在のオブジェクトを一応全部リンクしてみた
Publisherはそれほどオブジェクトがないと思うが、それでも1706行ある
しかもジャンプすると英語になるときがある
その場合は下記リンクからPublisherを展開すると、英語にならないようだ。
一応イベントプロパティ、メソッドの順とした。

Publisherは全部展開し、Excelniならべ、必要なハイパーリンクを隣接セルに入れる方法で構築した。コードは以下のとおりである。
下記を参考にSelectionで強引に範囲を取得した。

Sub test30()
Dim wb As Workbook: Set wb = ThisWorkbook
Dim ws As Worksheet: Set ws = ActiveSheet
Dim r As Range
Dim lastRow As Long
Dim iRow As Long, iCol As Long
Dim buf As String
Dim hLink As Hyperlink, hLinks As Hyperlinks
Dim strLink As String
lastRow = ws.UsedRange.Rows.Count
For iRow = 1 To lastRow
Set r = ws.Range("B" & iRow)
If r.Value <> "" Then
buf = r.Value
   If r.Hyperlinks.Count > 0 Then
   Set hLink = r.Hyperlinks(1)
   ws.Range("I" & iRow).Value = "##[" & buf & "](" & hLink.Address & ")"
    ElseIf r.Offset(, 1).Value <> "" Then
   ws.Range("I" & iRow).Value = "##[" & buf & "](" & r.Offset(, 1).Value & ")"
   r.Offset(, 1).Clear
   Else
   ws.Range("I" & iRow).Value = "##[" & buf & "](" & "https://msdn.microsoft.com/ja-jp/vba/publisher-vba/articles/" & Replace(buf, " オブジェクト", "", 1, -1, vbTextCompare) & "-object-publisher" & ")"
  End If
End If

Next
End Sub
Sub test31()
Dim wb As Workbook: Set wb = ThisWorkbook
Dim ws As Worksheet: Set ws = ActiveSheet
Dim r As Range
Dim lastRow As Long
Dim iRow As Long, iCol As Long
Dim buf As String
Dim hLink As Hyperlink, hLinks As Hyperlinks
Dim strLink As String
lastRow = ws.UsedRange.Rows.Count
For iRow = 1 To lastRow
Set r = ws.Range("C" & iRow)
If r.Value <> "" Then
buf = r.Value
   If r.Hyperlinks.Count > 0 Then
   Set hLink = r.Hyperlinks(1)
   ws.Range("I" & iRow).Value = "###[" & buf & "](" & hLink.Address & ")"
    ElseIf r.Offset(, 1).Value <> "" Then
   ws.Range("I" & iRow).Value = "###[" & buf & "](" & r.Offset(, 1).Value & ")"
   r.Offset(, 1).Clear
   Else
   ws.Range("I" & iRow).Value = "###[" & buf & "](" & "https://msdn.microsoft.com/ja-jp/vba/publisher-vba/articles/" & Replace(buf, " オブジェクト", "", 1, -1, vbTextCompare) & "-object-publisher" & ")"
  End If
End If

Next
End Sub

目次

Publisher VBA の概要

概念

コレクションからオブジェクトを返す

Application オブジェクトでイベントを使用する

Document オブジェクトでイベントを使用する

オブジェクト モデル

Adjustments オブジェクト

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

AdvancedPrintOptions オブジェクト

AllowBleeds プロパティ

Application プロパティ

BackSideInsertFaceUp プロパティ

GraphicsResolution プロパティ

HorizontalFlip プロパティ

IsPostscriptPrinter プロパティ

ManualFeedAlign プロパティ

ManualFeedDirection プロパティ

NegativeImage プロパティ

PageRotated プロパティ

Parent プロパティ

PrintBleedMarks プロパティ

PrintCropMarks プロパティ

PrintDensityBars プロパティ

PrintJobInformation プロパティ

PrintRegistrationMarks プロパティ

Resolution プロパティ

UseOnlyPublicationFonts プロパティ

VerticalFlip プロパティ

Application オブジェクト

AfterPrint イベント

BeforePrint イベント

DocumentBeforeClose イベント

DocumentOpen イベント

HideCatalogUI イベント

MailMergeAfterMerge イベント

MailMergeAfterRecordMerge イベント

MailMergeBeforeMerge イベント

MailMergeBeforeRecordMerge イベント

MailMergeDataSourceLoad イベント

MailMergeDataSourceValidate イベント

MailMergeGenerateBarcode イベント

MailMergeInsertBarcode イベント

MailMergeRecipientListClose イベント

MailMergeWizardFollowUpCustom イベント

MailMergeWizardStateChange イベント

NewDocument イベント

Quit イベント

ShowCatalogUI イベント

WindowActivate イベント

WindowDeactivate イベント

WindowPageChange イベント

CentimetersToPoints メソッド

ChangeFileOpenDirectory メソッド

EmusToPoints メソッド

Help メソッド

InchesToPoints メソッド

IsValidObject メソッド

LinesToPoints メソッド

MillimetersToPoints メソッド

NewDocument メソッド

Open メソッド

PicasToPoints メソッド

PixelsToPoints メソッド

PointsToCentimeters メソッド

PointsToEmus メソッド

PointsToInches メソッド

PointsToLines メソッド

PointsToMillimeters メソッド

PointsToPicas メソッド

PointsToPixels メソッド

PointsToTwips メソッド

Quit メソッド

ShowWizardCatalog メソッド

TwipsToPoints メソッド

ActiveDocument プロパティ

ActiveWindow プロパティ

Application プロパティ

Assistance プロパティ

AutomationSecurity プロパティ

Build プロパティ

CaptionStyles プロパティ

ColorSchemes プロパティ

COMAddIns プロパティ

CommandBars プロパティ

Documents プロパティ

FileDialog プロパティ

InsertBarcodeVisible プロパティ

InstalledPrinters プロパティ

Language プロパティ

Name プロパティ

OfficeDataSourceObject プロパティ

Options プロパティ

Parent プロパティ

Path プロパティ

PathSeparator プロパティ

PrintPreview プロパティ

ProductCode プロパティ

ScreenUpdating プロパティ

Selection プロパティ

ShowFollowUpCustom プロパティ

SnapToGuides プロパティ

SnapToObjects プロパティ

TemplateFolderPath プロパティ

ValidateAddressVisible プロパティ

Version プロパティ

WebOptions プロパティ

WizardCatalogVisible プロパティ

Attachment オブジェクト

Name プロパティ

Delete メソッド

Attachments オブジェクト

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

Add メソッド

ClearAll メソッド

BorderArt オブジェクト

Application プロパティ

Name プロパティ

Parent プロパティ

BorderArtFormat オブジェクト

Delete メソッド

RevertToDefaultWeight メソッド

RevertToOriginalColor メソッド

Set メソッド

Application プロパティ

Color プロパティ

Exists プロパティ

Name プロパティ

Parent プロパティ

StretchPictures プロパティ

Weight プロパティ

BorderArts オブジェクト

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

BuildingBlock オブジェクト

Delete メソッド

Category プロパティ

Description プロパティ

Gallery プロパティ

Keywords プロパティ

Name プロパティ

ShowInGallery プロパティ

Type プロパティ

BuildingBlocks オブジェクト

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

CalloutFormat オブジェクト

AutomaticLength メソッド

CustomDrop メソッド

CustomLength メソッド

PresetDrop メソッド

Accent プロパティ

Angle プロパティ

Application プロパティ

AutoAttach プロパティ

AutoLength プロパティ

Border プロパティ

Drop プロパティ

DropType プロパティ

Gap プロパティ

Length プロパティ

Parent プロパティ

Type プロパティ

CaptionStyle オブジェクト

Application プロパティ

Name プロパティ

Parent プロパティ

CaptionStyles オブジェクト

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

CatalogMergeShapes オブジェクト

Item メソッド

Range メソッド

Application プロパティ

Count プロパティ

HorizontalRepeat プロパティ

Parent プロパティ

VerticalRepeat プロパティ

Cell オブジェクト

Merge メソッド

Select メソッド

Split メソッド

Application プロパティ

BorderBottom プロパティ

BorderDiagonal プロパティ

BorderLeft プロパティ

BorderRight プロパティ

BorderTop プロパティ

CellTextOrientation プロパティ

Column プロパティ

Diagonal プロパティ

Fill プロパティ

HasText プロパティ

Height プロパティ

MarginBottom プロパティ

MarginLeft プロパティ

MarginRight プロパティ

MarginTop プロパティ

Parent プロパティ

Row プロパティ

Selected プロパティ

TextRange プロパティ

VerticalTextAlignment プロパティ

Width プロパティ

CellBorder オブジェクト

Application プロパティ

Color プロパティ

Parent プロパティ

Weight プロパティ

CellRange オブジェクト

Item メソッド

Merge メソッド

Select メソッド

Application プロパティ

Column プロパティ

Count プロパティ

Height プロパティ

Parent プロパティ

Row プロパティ

Width プロパティ

ColorCMYK オブジェクト

SetCMYK メソッド

Application プロパティ

Black プロパティ

Cyan プロパティ

Magenta プロパティ

Parent プロパティ

Yellow プロパティ

ColorFormat オブジェクト

Application プロパティ

BaseCMYK プロパティ

BaseRGB プロパティ

CMYK プロパティ

Ink プロパティ

Parent プロパティ

RGB プロパティ

SchemeColor プロパティ

TintAndShade プロパティ

Transparency プロパティ

Type プロパティ

ColorScheme オブジェクト

Application プロパティ

Colors プロパティ

Name プロパティ

Parent プロパティ

ColorSchemes オブジェクト

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

ColorsInUse オブジェクト

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

Column オブジェクト

Delete メソッド

Application プロパティ

Cells プロパティ

Parent プロパティ

Width プロパティ

Columns オブジェクト

Add メソッド

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

ConnectorFormat オブジェクト

BeginConnect メソッド

BeginDisconnect メソッド

EndConnect メソッド

EndDisconnect メソッド

Application プロパティ

BeginConnected プロパティ

BeginConnectedShape プロパティ

BeginConnectionSite プロパティ

EndConnected プロパティ

EndConnectedShape プロパティ

EndConnectionSite プロパティ

Parent プロパティ

Type プロパティ

Document オブジェクト

BeforeClose イベント

Open イベント

Redo イベント

ShapesAdded イベント

ShapesRemoved イベント

Undo イベント

WizardAfterChange イベント

BeginCustomUndoAction メソッド

ChangeDocument メソッド

Close メソッド

ConvertPublicationType メソッド

EndCustomUndoAction メソッド

ExportAsFixedFormat メソッド

FindShapeByWizardTag メソッド

FindShapesByTag メソッド

PrintOutEx メソッド

Redo メソッド

Save メソッド

SaveAs メソッド

SetBusinessInformation メソッド

Undo メソッド

UndoClear メソッド

UpdateOLEObjects メソッド

WebPagePreview メソッド

ActiveView プロパティ

ActiveWindow プロパティ

AdvancedPrintOptions プロパティ

Application プロパティ

AvailableBuildingBlocks プロパティ

BorderArts プロパティ

ColorScheme プロパティ

DefaultTabStop プロパティ

DocumentDirection プロパティ

EnvelopeVisible プロパティ

Find プロパティ

FullName プロパティ

IsDataSourceConnected プロパティ

IsWizard プロパティ

LayoutGuides プロパティ

MailEnvelope プロパティ

MailMerge プロパティ

MasterPages プロパティ

Name プロパティ

Pages プロパティ

PageSetup プロパティ

Parent プロパティ

Path プロパティ

PrintPageBackgrounds プロパティ

PrintStyle プロパティ

PublicationType プロパティ

ReadOnly プロパティ

RedoActionsAvailable プロパティ

RemovePersonalInformation プロパティ

Saved プロパティ

SaveFormat プロパティ

ScratchArea プロパティ

Sections プロパティ

Selection プロパティ

Stories プロパティ

SurplusShapes プロパティ

Tags プロパティ

TextStyles プロパティ

UndoActionsAvailable プロパティ

ViewBoundaries プロパティ

ViewGuides プロパティ

ViewHorizontalBaseLineGuides プロパティ

ViewTwoPageSpread プロパティ

ViewVerticalBaseLineGuides プロパティ

WebNavigationBarSets プロパティ

Wizard プロパティ

Documents オブジェクト

Add メソッド

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

DropCap オブジェクト

ApplyCustomDropCap メソッド

Clear メソッド

Application プロパティ

FontBold プロパティ

FontColor プロパティ

FontItalic プロパティ

FontName プロパティ

LinesUp プロパティ

Parent プロパティ

Size プロパティ

Span プロパティ

EmailMergeEnvelope オブジェクト

Application プロパティ

Attachemts プロパティ

Bcc プロパティ

Cc プロパティ

Parent プロパティ

Priority プロパティ

Subject プロパティ

To プロパティ

Field オブジェクト

Unlink メソッド

Application プロパティ

Code プロパティ

Next プロパティ

Parent プロパティ

PhoneticGuide プロパティ

Result プロパティ

TextRange プロパティ

Type プロパティ

Fields オブジェクト

AddHorizontalInVertical メソッド

AddPhoneticGuide メソッド

Item メソッド

Unlink メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

FillFormat オブジェクト

OneColorGradient メソッド

Patterned メソッド

PresetGradient メソッド

PresetTextured メソッド

Solid メソッド

TwoColorGradient メソッド

UserPicture メソッド

UserTextured メソッド

Application プロパティ

BackColor プロパティ

ForeColor プロパティ

GradientAngle プロパティ

GradientColorType プロパティ

GradientDegree プロパティ

GradientStyle プロパティ

GradientVariant プロパティ

Parent プロパティ

Pattern プロパティ

PresetGradientType プロパティ

PresetTexture プロパティ

RotateWithObject プロパティ

TextureAlignment プロパティ

TextureHorizontalScale プロパティ

TextureName プロパティ

TextureOffsetX プロパティ

TextureOffsetY プロパティ

TextureType プロパティ

TextureVerticalScale プロパティ

Transparency プロパティ

Type プロパティ

Visible プロパティ

FindReplace オブジェクト

Clear メソッド

Execute メソッド

Application プロパティ

FindText プロパティ

Forward プロパティ

FoundTextRange プロパティ

MatchAlefHamza プロパティ

MatchCase プロパティ

MatchDiacritics プロパティ

MatchKashida プロパティ

MatchWholeWord プロパティ

MatchWidth プロパティ

Parent プロパティ

ReplaceScope プロパティ

ReplaceWithText プロパティ

Font オブジェクト

Duplicate メソッド

GetScriptName メソッド

Grow メソッド

Reset メソッド

SetScriptName メソッド

Shrink メソッド

AllCaps プロパティ

Application プロパティ

AttachedToText プロパティ

AutomaticPairKerningThreshold プロパティ

Bold プロパティ

BoldBi プロパティ

ContextualAlternates プロパティ

DiacriticColor プロパティ

ExpandUsingKashida プロパティ

Fill プロパティ

Glow プロパティ

Italic プロパティ

ItalicBi プロパティ

Kerning プロパティ

Ligature プロパティ

Line プロパティ

Name プロパティ

NumberStyle プロパティ

Parent プロパティ

Position プロパティ

Reflection プロパティ

Scaling プロパティ

Size プロパティ

SizeBi プロパティ

SmallCaps プロパティ

StrikeThrough プロパティ

StylisticAlternates プロパティ

StylisticSets プロパティ

SubScript プロパティ

SuperScript プロパティ

Swash プロパティ

TextShadow プロパティ

ThreeD プロパティ

Tracking プロパティ

TrackingPreset プロパティ

Underline プロパティ

UseDiacriticColor プロパティ

FreeformBuilder オブジェクト

AddNodes メソッド

ConvertToShape メソッド

Application プロパティ

Parent プロパティ

GlowFormat オブジェクト

Color プロパティ

Radius プロパティ

Transparency プロパティ

Visible プロパティ

GroupShapes オブジェクト

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

HeaderFooter オブジェクト

Delete メソッド

Application プロパティ

IsHeader プロパティ

Parent プロパティ

TextRange プロパティ

Hyperlink オブジェクト

Delete メソッド

SetPageRelative メソッド

Address プロパティ

Application プロパティ

EmailSubject プロパティ

PageID プロパティ

Parent プロパティ

Range プロパティ

Shape プロパティ

TargetType プロパティ

TextToDisplay プロパティ

Type プロパティ

Hyperlinks オブジェクト

Add メソッド

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

InlineShapes オブジェクト

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

Range プロパティ

InstalledPrinters オブジェクト

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

LayoutGuides オブジェクト

Application プロパティ

ColumnGutterWidth プロパティ

Columns プロパティ

GutterCenterlines プロパティ

HorizontalBaseLineOffset プロパティ

HorizontalBaseLineSpacing プロパティ

MarginBottom プロパティ

MarginLeft プロパティ

MarginRight プロパティ

MarginTop プロパティ

MirrorGuides プロパティ

Parent プロパティ

RowGutterWidth プロパティ

Rows プロパティ

VerticalBaseLineOffset プロパティ

VerticalBaseLineSpacing プロパティ

LineFormat オブジェクト

PresetGradient メソッド

Application プロパティ

BackColor プロパティ

BeginArrowheadLength プロパティ

BeginArrowheadStyle プロパティ

BeginArrowheadWidth プロパティ

CapStyle プロパティ

DashStyle プロパティ

EndArrowheadLength プロパティ

EndArrowheadStyle プロパティ

EndArrowheadWidth プロパティ

ForeColor プロパティ

GradientAngle プロパティ

GradientColorType プロパティ

GradientStyle プロパティ

GradientVariant プロパティ

InsetPen プロパティ

JoinStyle プロパティ

Parent プロパティ

Pattern プロパティ

PresetGradientType プロパティ

Style プロパティ

Transparency プロパティ

Type プロパティ

Visible プロパティ

Weight プロパティ

LinkFormat オブジェクト

Update メソッド

Application プロパティ

Parent プロパティ

SourceFullName プロパティ

MailMerge オブジェクト

CreateShortcut メソッド

Execute メソッド

ExportRecipientList メソッド

OpenDataSource メソッド

ShowWizardEx メソッド

Application プロパティ

DataSource プロパティ

DocumentUpdating プロパティ

EmailMergeEnvelope プロパティ

Parent プロパティ

SuppressBlankLines プロパティ

Type プロパティ

ViewMailMergeFieldCodes プロパティ

WizardState プロパティ

MailMergeDataField オブジェクト

AddToRecipientFields メソッド

Insert メソッド

MapToRecipientField メソッド

UnMapRecipientField メソッド

Application プロパティ

Creator プロパティ

FieldType プロパティ

Index プロパティ

IsMapped プロパティ

MappedTo プロパティ

Name プロパティ

Parent プロパティ

Value プロパティ

MailMergeDataFields オブジェクト

Item メソッド

Application プロパティ

Count プロパティ

Creator プロパティ

Parent プロパティ

MailMergeDataSource オブジェクト

ApplyFilter メソッド

Close メソッド

EditRecord メソッド

FindRecord メソッド

OpenRecipientsDialog メソッド

SetAllErrorFlags メソッド

SetAllIncludedFlags メソッド

SetSortOrder メソッド

ActiveRecord プロパティ

Application プロパティ

ConnectString プロパティ

DataFields プロパティ

DataSources プロパティ

EverValidated プロパティ

Filters プロパティ

FirstRecord プロパティ

Included プロパティ

InvalidAddress プロパティ

InvalidComments プロパティ

IsMaster プロパティ

LastRecord プロパティ

MappedDataFields プロパティ

Name プロパティ

Parent プロパティ

RecordCount プロパティ

TableName プロパティ

Type プロパティ

ValidatedClean プロパティ

MailMergeDataSources オブジェクト

Item メソッド

Application プロパティ

Count プロパティ

Creator プロパティ

Parent プロパティ

MailMergeFilterCriterion オブジェクト

Application プロパティ

Column プロパティ

CompareTo プロパティ

Comparison プロパティ

Conjunction プロパティ

Creator プロパティ

Index プロパティ

Parent プロパティ

MailMergeFilters オブジェクト

Add メソッド

Delete メソッド

Item メソッド

Application プロパティ

Count プロパティ

Creator プロパティ

Parent プロパティ

MailMergeMappedDataField オブジェクト

Application プロパティ

DataFieldName プロパティ

Index プロパティ

Name プロパティ

Parent プロパティ

Value プロパティ

MailMergeMappedDataFields オブジェクト

Application プロパティ

Count プロパティ

Parent プロパティ

Item メソッド

MasterPages オブジェクト

Add メソッド

FindByPageID メソッド

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

ObjectVerbs オブジェクト

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

OLEFormat オブジェクト

Activate メソッド

DoVerb メソッド

Application プロパティ

Object プロパティ

ObjectVerbs プロパティ

Parent プロパティ

ProgId プロパティ

Options オブジェクト

ResetTips メソッド

ResetWizardSynchronizing メソッド

AddHebDoubleQuote プロパティ

AllowBackgroundSave プロパティ

Application プロパティ

AutoFormatWord プロパティ

AutoHyphenate プロパティ

AutoKeyboardSwitching プロパティ

AutoSelectWord プロパティ

DefaultPubDirection プロパティ

DefaultTextFlowDirection プロパティ

DisplayStatusBar プロパティ

DragAndDropText プロパティ

HyphenationZone プロパティ

MeasurementUnit プロパティ

Parent プロパティ

PathForPictures プロパティ

PathForPublications プロパティ

SaveAutoRecoverInfo プロパティ

SaveAutoRecoverInfoInterval プロパティ

SequenceCheck プロパティ

ShowBasicColors プロパティ

ShowScreenTipsOnObjects プロパティ

ShowTipPages プロパティ

TypeNReplace プロパティ

UseCatalogAtStartup プロパティ

UseWizardForBlankPublication プロパティ

Page オブジェクト

Delete メソッド

Duplicate メソッド

ExportEmailHTML メソッド

Move メソッド

SaveAsPicture メソッド

Application プロパティ

Background プロパティ

Footer プロパティ

Header プロパティ

Height プロパティ

IgnoreMaster プロパティ

IsLeading プロパティ

IsTrailing プロパティ

IsTwoPageMaster プロパティ

IsWizardPage プロパティ

LayoutGuides プロパティ

Master プロパティ

Name プロパティ

PageID プロパティ

PageIndex プロパティ

PageNumber プロパティ

PageType プロパティ

Parent プロパティ

ReaderSpread プロパティ

RulerGuides プロパティ

Shapes プロパティ

Tags プロパティ

WebPageOptions プロパティ

Width プロパティ

Wizard プロパティ

XOffsetWithinReaderSpread プロパティ

YOffsetWithinReaderSpread プロパティ

PageBackground オブジェクト

Create メソッド

Delete メソッド

Application プロパティ

Exists プロパティ

Fill プロパティ

Parent プロパティ

Pages オブジェクト

Add メソッド

AddWizardPage メソッド

FindByPageID メソッド

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

PageSetup オブジェクト

Application プロパティ

AvailablePageSizes プロパティ

HorizontalGap プロパティ

LeftMargin プロパティ

PageHeight プロパティ

PageSize プロパティ

PageWidth プロパティ

Parent プロパティ

PublicationLayout プロパティ

TopMargin プロパティ

VerticalGap プロパティ

PageSize オブジェクト

Application プロパティ

HasBackgroundImage プロパティ

HorizontalGap プロパティ

LeftMargin プロパティ

Name プロパティ

PageHeight プロパティ

PageWidth プロパティ

Parent プロパティ

TopMargin プロパティ

VerticalGap プロパティ

PageSizes オブジェクト

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

ParagraphFormat オブジェクト

Duplicate メソッド

Reset メソッド

SetLineSpacing メソッド

SetListType メソッド

Alignment プロパティ

Application プロパティ

AttachedToText プロパティ

CharBasedFirstLineIndent プロパティ

FirstLineIndent プロパティ

KashidaPercentage プロパティ

KeepLinesTogether プロパティ

KeepWithNext プロパティ

LeftIndent プロパティ

LineSpacing プロパティ

LineSpacingRule プロパティ

ListBulletFontName プロパティ

ListBulletFontSize プロパティ

ListBulletText プロパティ

ListIndent プロパティ

ListNumberSeparator プロパティ

ListNumberStart プロパティ

ListType プロパティ

LockToBaseLine プロパティ

Parent プロパティ

RightIndent プロパティ

SpaceAfter プロパティ

SpaceBefore プロパティ

StartInNextTextBox プロパティ

Tabs プロパティ

TextDirection プロパティ

TextStyle プロパティ

UseCharBasedFirstLineIndent プロパティ

WidowControl プロパティ

PhoneticGuide オブジェクト

Clear メソッド

Alignment プロパティ

Application プロパティ

BaseText プロパティ

FontName プロパティ

FontSize プロパティ

Parent プロパティ

Raise プロパティ

Text プロパティ

PictureFormat オブジェクト

ClearCrop メソッド

FillFrame メソッド

FitFrame メソッド

IncrementBrightness メソッド

IncrementContrast メソッド

Recolor メソッド

Remove メソッド

Replace メソッド

ReplaceEx メソッド

RestoreOriginalColors メソッド

Application プロパティ

Brightness プロパティ

ColorModel プロパティ

ColorsInPalette プロパティ

ColorType プロパティ

Contrast プロパティ

CropBottom プロパティ

CropLeft プロパティ

CropRight プロパティ

CropTop プロパティ

EffectiveResolution プロパティ

Filename プロパティ

FileSize プロパティ

HasAlphaChannel プロパティ

HasTransparencyColor プロパティ

Height プロパティ

HorizontalPictureLocking プロパティ

HorizontalScale プロパティ

ImageFormat プロパティ

IsEmpty プロパティ

IsGreyScale プロパティ

IsLinked プロパティ

IsRecolored プロパティ

IsTrueColor プロパティ

LeaveBlackAsBlack プロパティ

LinkedFileStatus プロパティ

OriginalColorsInPalette プロパティ

OriginalFileSize プロパティ

OriginalHasAlphaChannel プロパティ

OriginalHeight プロパティ

OriginalIsTrueColor プロパティ

OriginalResolution プロパティ

OriginalWidth プロパティ

Parent プロパティ

RecoloredPictureColor プロパティ

TransparencyColor プロパティ

TransparentBackground プロパティ

VerticalPictureLocking プロパティ

VerticalScale プロパティ

Width プロパティ

Plate オブジェクト

ConvertToProcess メソッド

Delete メソッド

Application プロパティ

Color プロパティ

Index プロパティ

InkName プロパティ

InUse プロパティ

Luminance プロパティ

Name プロパティ

Parent プロパティ

Plates オブジェクト

Add メソッド

FindPlateByInkName メソッド

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

PrintablePlate オブジェクト

PrintableRect オブジェクト

Application プロパティ

Height プロパティ

Left プロパティ

Parent プロパティ

Top プロパティ

Width プロパティ

PrintablePlates オブジェクト

Printer オブジェクト

Application プロパティ

DriverType プロパティ

Index プロパティ

IsActivePrinter プロパティ

IsColor プロパティ

IsDuplex プロパティ

PaperHeight プロパティ

PaperOrientation プロパティ

PaperSize プロパティ

PaperSource プロパティ

PaperWidth プロパティ

Parent プロパティ

PrintableRect プロパティ

PrinterName プロパティ

PrintMode プロパティ

ReaderSpread オブジェクト

Application プロパティ

Height プロパティ

Left プロパティ

PageCount プロパティ

Pages プロパティ

Parent プロパティ

Top プロパティ

Width プロパティ

ReflectionFormat オブジェクト

Blur プロパティ

Offset プロパティ

Size プロパティ

Transparency プロパティ

Type プロパティ

Visible プロパティ

Row オブジェクト

Delete メソッド

Application プロパティ

Cells プロパティ

Height プロパティ

Parent プロパティ

Rows オブジェクト

Add メソッド

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

RulerGuide オブジェクト

Delete メソッド

Application プロパティ

Parent プロパティ

Position プロパティ

Type プロパティ

RulerGuides オブジェクト

Add メソッド

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

ScratchArea オブジェクト

Application プロパティ

Parent プロパティ

Shapes プロパティ

Section オブジェクト

Delete メソッド

Application プロパティ

ContinueNumbersFromPreviousSection プロパティ

PageNumberFormat プロパティ

PageNumberStart プロパティ

Parent プロパティ

ShowHeaderFooterOnFirstPage プロパティ

StartPageIndex プロパティ

Sections オブジェクト

Add メソッド

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

Selection オブジェクト

Unselect メソッド

Application プロパティ

ChildShapeRange プロパティ

Parent プロパティ

ShapeRange プロパティ

TableCellRange プロパティ

TextRange プロパティ

Type プロパティ

ShadowFormat オブジェクト

IncrementOffsetX メソッド

IncrementOffsetY メソッド

Application プロパティ

Blur プロパティ

ForeColor プロパティ

Obscured プロパティ

OffsetX プロパティ

OffsetY プロパティ

Parent プロパティ

RotateWithShape プロパティ

Size プロパティ

Type プロパティ

Visible プロパティ

Shape オブジェクト

AddToCatalogMergeArea メソッド

Apply メソッド

Copy メソッド

Cut メソッド

Delete メソッド

Duplicate メソッド

Flip メソッド

GetHeight メソッド

GetLeft メソッド

GetTop メソッド

GetWidth メソッド

IncrementLeft メソッド

IncrementRotation メソッド

IncrementTop メソッド

MoveIntoTextFlow メソッド

MoveOutOfTextFlow メソッド

MoveToPage メソッド

PickUp メソッド

RemoveCatalogMergeArea メソッド

RemoveFromCatalogMergeArea メソッド

RerouteConnections メソッド

SaveAsBuildingBlock メソッド

SaveAsPicture メソッド

ScaleHeight メソッド

ScaleWidth メソッド

Select メソッド

SetCaption メソッド

SetShapesDefaultProperties メソッド

Ungroup メソッド

ZOrder メソッド

Adjustments プロパティ

AlternativeText プロパティ

Application プロパティ

AutoShapeType プロパティ

BlackWhiteMode プロパティ

BorderArt プロパティ

Callout プロパティ

CatalogMergeItems プロパティ

ConnectionSiteCount プロパティ

Connector プロパティ

ConnectorFormat プロパティ

Fill プロパティ

Glow プロパティ

GroupItems プロパティ

HasTable プロパティ

HasTextFrame プロパティ

Height プロパティ

HorizontalFlip プロパティ

Hyperlink プロパティ

ID プロパティ

InlineAlignment プロパティ

InlineTextRange プロパティ

IsExcess プロパティ

IsGroupMember プロパティ

IsInline プロパティ

Left プロパティ

Line プロパティ

LinkFormat プロパティ

LockAspectRatio プロパティ

Name プロパティ

Nodes プロパティ

OLEFormat プロパティ

Parent プロパティ

ParentGroupShape プロパティ

PictureFormat プロパティ

Reflection プロパティ

Rotation プロパティ

Shadow プロパティ

SoftEdge プロパティ

Table プロパティ

Tags プロパティ

TextEffect プロパティ

TextFrame プロパティ

TextWrap プロパティ

ThreeD プロパティ

Top プロパティ

Type プロパティ

VerticalFlip プロパティ

Vertices プロパティ

WebCheckBox プロパティ

WebCommandButton プロパティ

WebListBox プロパティ

WebNavigationBarSetName プロパティ

WebOptionButton プロパティ

WebTextBox プロパティ

Width プロパティ

Wizard プロパティ

WizardTag プロパティ

WizardTagInstance プロパティ

ZOrderPosition プロパティ

ShapeNode オブジェクト

Application プロパティ

EditingType プロパティ

Parent プロパティ

Points プロパティ

SegmentType プロパティ

ShapeNodes オブジェクト

Delete メソッド

Insert メソッド

Item メソッド

SetEditingType メソッド

SetPosition メソッド

SetSegmentType メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

ShapeRange オブジェクト

AddToCatalogMergeArea メソッド

Align メソッド

Apply メソッド

Copy メソッド

Cut メソッド

Delete メソッド

Distribute メソッド

Duplicate メソッド

Flip メソッド

GetHeight メソッド

GetLeft メソッド

GetTop メソッド

GetWidth メソッド

Group メソッド

IncrementLeft メソッド

IncrementRotation メソッド

IncrementTop メソッド

Item メソッド

MoveIntoTextFlow メソッド

MoveOutOfTextFlow メソッド

PickUp メソッド

Regroup メソッド

RemoveFromCatalogMergeArea メソッド

RerouteConnections メソッド

SaveAsBuildingBlock メソッド

SaveAsPicture メソッド

ScaleHeight メソッド

ScaleWidth メソッド

Select メソッド

SetShapesDefaultProperties メソッド

Ungroup メソッド

ZOrder メソッド

Adjustments プロパティ

AlternativeText プロパティ

Application プロパティ

AutoShapeType プロパティ

BlackWhiteMode プロパティ

Callout プロパティ

ConnectionSiteCount プロパティ

Connector プロパティ

ConnectorFormat プロパティ

Count プロパティ

Fill プロパティ

Glow プロパティ

GroupItems プロパティ

HasTable プロパティ

HasTextFrame プロパティ

Height プロパティ

HorizontalFlip プロパティ

Hyperlink プロパティ

ID プロパティ

InlineAlignment プロパティ

InlineTextRange プロパティ

IsInline プロパティ

Left プロパティ

Line プロパティ

LinkFormat プロパティ

LockAspectRatio プロパティ

Name プロパティ

Nodes プロパティ

OLEFormat プロパティ

Parent プロパティ

PictureFormat プロパティ

Reflection プロパティ

Rotation プロパティ

Shadow プロパティ

SoftEdge プロパティ

Table プロパティ

Tags プロパティ

TextEffect プロパティ

TextFrame プロパティ

TextWrap プロパティ

ThreeD プロパティ

Top プロパティ

Type プロパティ

VerticalFlip プロパティ

Vertices プロパティ

Width プロパティ

Wizard プロパティ

WizardTag プロパティ

WizardTagInstance プロパティ

ZOrderPosition プロパティ

Shapes オブジェクト

AddBuildingBlock メソッド

AddCallout メソッド

AddCatalogMergeArea メソッド

AddCatalogMergeFieldToCanvas メソッド

AddConnector メソッド

AddCurve メソッド

AddEmptyPictureFrame メソッド

AddGroupWizard メソッド

AddLabel メソッド

AddLine メソッド

AddOLEObject メソッド

AddPicture メソッド

AddPolyline メソッド

AddShape メソッド

AddTable メソッド

AddTextbox メソッド

AddTextEffect メソッド

AddWebControl メソッド

AddWebNavigationBar メソッド

AddWordArt メソッド

BuildFreeform メソッド

FindShapeByWizardTag メソッド

Item メソッド

Paste メソッド

Range メソッド

SelectAll メソッド

Application プロパティ

CanvasArrangementType プロパティ

CanvasesCount プロパティ

Count プロパティ

Parent プロパティ

SoftEdgeFormat オブジェクト

Radius プロパティ

Type プロパティ

Visible プロパティ

Stories オブジェクト

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

Story オブジェクト

Application プロパティ

HasTable プロパティ

HasTextFrame プロパティ

Parent プロパティ

Table プロパティ

TextFrame プロパティ

TextRange プロパティ

Type プロパティ

Table オブジェクト

ApplyAutoFormat メソッド

Application プロパティ

Cells プロパティ

Columns プロパティ

GrowToFitText プロパティ

Parent プロパティ

Rows プロパティ

TableDirection プロパティ

TabStop オブジェクト

Clear メソッド

Alignment プロパティ

Application プロパティ

Leader プロパティ

Parent プロパティ

Position プロパティ

TabStops オブジェクト

Add メソッド

ClearAll メソッド

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

Tag オブジェクト

Delete メソッド

Application プロパティ

Name プロパティ

Parent プロパティ

Value プロパティ

Tags オブジェクト

Add メソッド

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

TextEffectFormat オブジェクト

ToggleVerticalText メソッド

Alignment プロパティ

Application プロパティ

FontBold プロパティ

FontItalic プロパティ

FontName プロパティ

FontSize プロパティ

KernedPairs プロパティ

NormalizedHeight プロパティ

Parent プロパティ

PresetShape プロパティ

PresetTextEffect プロパティ

PresetWordArt プロパティ

RotatedChars プロパティ

Text プロパティ

Tracking プロパティ

TextFrame オブジェクト

BreakForwardLink メソッド

ValidLinkTarget メソッド

Application プロパティ

AutoFitText プロパティ

Columns プロパティ

ColumnSpacing プロパティ

HasNextLink プロパティ

HasPreviousLink プロパティ

HasText プロパティ

IncludeContinuedFromPage プロパティ

IncludeContinuedOnPage プロパティ

MarginBottom プロパティ

MarginLeft プロパティ

MarginRight プロパティ

MarginTop プロパティ

NextLinkedTextFrame プロパティ

Orientation プロパティ

Overflowing プロパティ

Parent プロパティ

PreviousLinkedTextFrame プロパティ

Story プロパティ

TextRange プロパティ

VerticalTextAlignment プロパティ

TextRange オブジェクト

Characters メソッド

Collapse メソッド

Copy メソッド

Cut メソッド

Delete メソッド

Expand メソッド

InsertAfter メソッド

InsertBarcode メソッド

InsertBefore メソッド

InsertDateTime メソッド

InsertMailMergeField メソッド

InsertPageNumber メソッド

InsertSymbol メソッド

Lines メソッド

Move メソッド

MoveEnd メソッド

MoveStart メソッド

Paragraphs メソッド

Paste メソッド

Select メソッド

Words メソッド

BoundHeight プロパティ

BoundLeft プロパティ

BoundTop プロパティ

BoundWidth プロパティ

ContainingObject プロパティ

DropCap プロパティ

Duplicate プロパティ

End プロパティ

Fields プロパティ

Find プロパティ

Font プロパティ

Hyperlinks プロパティ

InlineShapes プロパティ

LanguageID プロパティ

Length プロパティ

LinesCount プロパティ

MajorityFont プロパティ

MajorityParagraphFormat プロパティ

ParagraphFormat プロパティ

ParagraphsCount プロパティ

Script プロパティ

Start プロパティ

Text プロパティ

WordsCount プロパティ

TextStyle オブジェクト

Delete メソッド

Application プロパティ

BaseStyle プロパティ

Description プロパティ

Font プロパティ

Name プロパティ

NextParagraphStyle プロパティ

ParagraphFormat プロパティ

Parent プロパティ

TextStyles オブジェクト

Add メソッド

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

ThreeDFormat オブジェクト

IncrementRotationX メソッド

IncrementRotationY メソッド

ResetRotation メソッド

SetExtrusionDirection メソッド

SetThreeDFormat メソッド

Application プロパティ

BevelBottomDepth プロパティ

BevelBottomInset プロパティ

BevelBottomType プロパティ

BevelTopDepth プロパティ

BevelTopInset プロパティ

BevelTopType プロパティ

ContourColor プロパティ

ContourWidth プロパティ

Depth プロパティ

ExtrusionColor プロパティ

ExtrusionColorType プロパティ

FieldOfView プロパティ

Parent プロパティ

Perspective プロパティ

PresetExtrusionDirection プロパティ

PresetLightingDirection プロパティ

PresetLightingSoftness プロパティ

PresetMaterial プロパティ

PresetThreeDFormat プロパティ

RotationX プロパティ

RotationY プロパティ

Visible プロパティ

View オブジェクト

ScrollShapeIntoView メソッド

ZoomIn メソッド

ZoomOut メソッド

ActivePage プロパティ

Application プロパティ

Parent プロパティ

Zoom プロパティ

WebCheckBox オブジェクト

Application プロパティ

Parent プロパティ

ReturnDataLabel プロパティ

Selected プロパティ

Value プロパティ

WebCommandButton オブジェクト

ActionURL プロパティ

Application プロパティ

ButtonText プロパティ

ButtonType プロパティ

DataFileFormat プロパティ

DataFileName プロパティ

DataRetrievalMethod プロパティ

EmailAddress プロパティ

EmailSubject プロパティ

HiddenFields プロパティ

Parent プロパティ

PostFormData プロパティ

WebHiddenFields オブジェクト

Add メソッド

Delete メソッド

Item メソッド

Name メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

WebListBox オブジェクト

Application プロパティ

ListBoxItems プロパティ

MultiSelect プロパティ

Parent プロパティ

ReturnDataLabel プロパティ

WebListBoxItems オブジェクト

AddItem メソッド

Delete メソッド

Item メソッド

Selected メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

WebNavigationBarHyperlinks オブジェクト

Add メソッド

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

WebNavigationBarSet オブジェクト

AddToEveryPage メソッド

ChangeOrientation メソッド

DeleteSetAndInstances メソッド

Application プロパティ

AutoUpdate プロパティ

ButtonStyle プロパティ

Design プロパティ

HorizontalAlignment プロパティ

HorizontalButtonCount プロパティ

IsHorizontal プロパティ

Links プロパティ

Name プロパティ

Parent プロパティ

ShowSelected プロパティ

WebNavigationBarSets オブジェクト

AddSet メソッド

Item メソッド

Application プロパティ

Count プロパティ

Parent プロパティ

WebOptionButton オブジェクト

Application プロパティ

Parent プロパティ

ReturnDataLabel プロパティ

Selected プロパティ

Value プロパティ

WebOptions オブジェクト

AlwaysSaveInDefaultEncoding プロパティ

Application プロパティ

EmailAsImg プロパティ

EnableIncrementalUpload プロパティ

Encoding プロパティ

OrganizeInFolder プロパティ

Parent プロパティ

RelyOnVML プロパティ

ShowOnlyWebFonts プロパティ

WebPageOptions オブジェクト

SetBackgroundSoundRepeat メソッド

Application プロパティ

BackgroundSound プロパティ

BackgroundSoundLoopCount プロパティ

BackgroundSoundLoopForever プロパティ

Description プロパティ

IncludePageOnNewWebNavigationBars プロパティ

Keywords プロパティ

Parent プロパティ

PublishFileName プロパティ

WebTextBox オブジェクト

Application プロパティ

DefaultText プロパティ

EchoAsterisks プロパティ

Limit プロパティ

Parent プロパティ

RequiredControl プロパティ

ReturnDataLabel プロパティ

Window オブジェクト

Activate メソッド

Move メソッド

Resize メソッド

Application プロパティ

Caption プロパティ

Height プロパティ

Hwnd プロパティ

Left プロパティ

Parent プロパティ

Top プロパティ

Visible プロパティ

Width プロパティ

WindowState プロパティ

Wizard オブジェクト

SetId メソッド

Application プロパティ

ID プロパティ

Name プロパティ

Parent プロパティ

Properties プロパティ

WizardProperties オブジェクト

FindPropertyById メソッド

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

WizardProperty オブジェクト

Application プロパティ

CurrentValueId プロパティ

Enabled プロパティ

ID プロパティ

Name プロパティ

Parent プロパティ

Values プロパティ

WizardValue オブジェクト

Application プロパティ

ID プロパティ

Name プロパティ

Parent プロパティ

WizardValues オブジェクト

Application プロパティ

Count プロパティ

Item プロパティ

Parent プロパティ

WrapFormat オブジェクト

Application プロパティ

DistanceAuto プロパティ

DistanceBottom プロパティ

DistanceLeft プロパティ

DistanceRight プロパティ

DistanceTop プロパティ

Parent プロパティ

Side プロパティ

Type プロパティ

列挙型

PbBuildingBlockGallery 列挙型

PbBuildingBlockType 列挙型

PbCalendarType 列挙型

pbCanvasArrangementType 列挙型

pbCatalogMergeFieldType 列挙型

PbCellDiagonalType 列挙型

PbCollapseDirection 列挙型

PbColorModel 列挙型

PbColorScheme 列挙型

PbColorType 列挙型

PbCommandButtonType 列挙型

PbDateTimeFormat 列挙型

PbDirectionType 列挙型

PbDriverType 列挙型

pbEmailMergePriority 列挙型

PbFieldType 列挙型

PbFileFormat 列挙型

PbFixedFormatIntent 列挙型

PbFixedFormatType 列挙型

PbFontScriptType 列挙型

PbHelpType 列挙型

PbHlinkTargetType 列挙型

PbHorizontalPictureLocking 列挙型

PbImageFormat 列挙型

PbInlineAlignment 列挙型

PbLigaturePresetType 列挙型

PbLineSpacingRule 列挙型

PbLinkedFileStatus 列挙型

PbListSeparator 列挙型

PbListType 列挙型

PbMailMergeDataFieldType 列挙型

PbMailMergeDataSource 列挙型

PbMailMergeDestination 列挙型

PbMergeType 列挙型

PbNavBarOrientation 列挙型

PbNumberStylesType 列挙型

PbOrientationType 列挙型

PbPageNumberFormat 列挙型

PbPageNumberType 列挙型

PbPageType 列挙型

PbParagraphAlignmentType 列挙型

PbPersonalInfoSet 列挙型

PbPhoneticGuideAlignmentType 列挙型

PbPictureInsertAs 列挙型

pbPictureInsertFit 列挙型

PbPictureResolution 列挙型

PbPlacementType 列挙型

pbPresetWordArt 列挙型

PbPrintGraphics 列挙型

PbPrintMode 列挙型

PbPrintStyle 列挙型

PbPublicationLayout 列挙型

PbPublicationType 列挙型

PbRecipientListFileType 列挙型

PbReplaceScope 列挙型

PbReplaceTint 列挙型

PbRulerGuideType 列挙型

PbSaveOptions 列挙型

PbSchemeColorIndex 列挙型

PbSelectionType 列挙型

PbShapeType 列挙型

PbStoryType 列挙型

PbSubmitDataFormatType 列挙型

PbSubmitDataRetrievalMethodType 列挙型

PbTabAlignmentType 列挙型

PbTabLeaderType 列挙型

PbTableAutoFormatType 列挙型

PbTableDirectionType 列挙型

PbTextAutoFitType 列挙型

PbTextDirection 列挙型

PbTextOrientation 列挙型

PbTextUnit 列挙型

PbTrackingPresetType 列挙型

PbUnderlineType 列挙型

PbUnitType 列挙型

PbVerticalPictureLocking 列挙型

PbVerticalTextAlignmentType 列挙型

PbWebControlType 列挙型

PbWindowState 列挙型

PbWizard 列挙型

PbWizardGroup 列挙型

PbWizardNavBarAlignment 列挙型

PbWizardNavBarButtonStyle 列挙型

PbWizardNavBarDesign 列挙型

PbWizardPageType 列挙型

PbWizardTag 列挙型

PbWrapSideType 列挙型

PbWrapType 列挙型


目次(以前までの掲載版)

Publisher VBA の概要

概念

コレクションからオブジェクトを返す

Application オブジェクトでイベントを使用する

Document オブジェクトでイベントを使用する

オブジェクト モデル

Adjustments オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
AdvancedPrintOptions オブジェクト
AllowBleeds プロパティ
Application プロパティ
BackSideInsertFaceUp プロパティ
GraphicsResolution プロパティ
HorizontalFlip プロパティ
IsPostscriptPrinter プロパティ
ManualFeedAlign プロパティ
ManualFeedDirection プロパティ
NegativeImage プロパティ
PageRotated プロパティ
Parent プロパティ
PrintBleedMarks プロパティ
PrintCropMarks プロパティ
PrintDensityBars プロパティ
PrintJobInformation プロパティ
PrintRegistrationMarks プロパティ
Resolution プロパティ
UseOnlyPublicationFonts プロパティ
VerticalFlip プロパティ
Application オブジェクト
ActiveDocument プロパティ
ActiveWindow プロパティ
Application プロパティ
Assistance プロパティ
AutomationSecurity プロパティ
Build プロパティ
CaptionStyles プロパティ
ColorSchemes プロパティ
COMAddIns プロパティ
CommandBars プロパティ
Documents プロパティ
FileDialog プロパティ
InsertBarcodeVisible プロパティ
InstalledPrinters プロパティ
Language プロパティ
Name プロパティ
OfficeDataSourceObject プロパティ
Options プロパティ
Parent プロパティ
Path プロパティ
PathSeparator プロパティ
PrintPreview プロパティ
ProductCode プロパティ
ScreenUpdating プロパティ
Selection プロパティ
ShowFollowUpCustom プロパティ
SnapToGuides プロパティ
SnapToObjects プロパティ
TemplateFolderPath プロパティ
ValidateAddressVisible プロパティ
Version プロパティ
WebOptions プロパティ
WizardCatalogVisible プロパティ
CentimetersToPoints メソッド
ChangeFileOpenDirectory メソッド
EmusToPoints メソッド
Help メソッド
InchesToPoints メソッド
IsValidObject メソッド
LinesToPoints メソッド
MillimetersToPoints メソッド
NewDocument メソッド
Open メソッド
PicasToPoints メソッド
PixelsToPoints メソッド
PointsToCentimeters メソッド
PointsToEmus メソッド
PointsToInches メソッド
PointsToLines メソッド
PointsToMillimeters メソッド
PointsToPicas メソッド
PointsToPixels メソッド
PointsToTwips メソッド
Quit メソッド
ShowWizardCatalog メソッド
TwipsToPoints メソッド
AfterPrint イベント
BeforePrint イベント
DocumentBeforeClose イベント
DocumentOpen イベント
HideCatalogUI イベント
MailMergeAfterMerge イベント
MailMergeAfterRecordMerge イベント
MailMergeBeforeMerge イベント
MailMergeBeforeRecordMerge イベント
MailMergeDataSourceLoad イベント
MailMergeDataSourceValidate イベント
MailMergeGenerateBarcode イベント
MailMergeInsertBarcode イベント
MailMergeRecipientListClose イベント
MailMergeWizardFollowUpCustom イベント
MailMergeWizardStateChange イベント
NewDocument イベント
Quit イベント
ShowCatalogUI イベント
WindowActivate イベント
WindowDeactivate イベント
WindowPageChange イベント

Attachment オブジェクト

Name プロパティ
Delete メソッド

Attachments オブジェクト

Application プロパティ

Count プロパティ
Item プロパティ
Parent プロパティ
Add メソッド
ClearAll メソッド

BorderArt オブジェクト

Application プロパティ
Name プロパティ
Parent プロパティ

BorderArtFormat オブジェクト

Application プロパティ
Color プロパティ
Exists プロパティ
Name プロパティ
Parent プロパティ
StretchPictures プロパティ
Weight プロパティ
Delete メソッド
RevertToDefaultWeight メソッド
RevertToOriginalColor メソッド
Set メソッド

BorderArts オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Item メソッド

BuildingBlock オブジェクト

Category プロパティ
Description プロパティ
Gallery プロパティ
Keywords プロパティ
Name プロパティ
ShowInGallery プロパティ
Type プロパティ
Delete メソッド

BuildingBlocks オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ

CalloutFormat オブジェクト

Accent プロパティ
Angle プロパティ
Application プロパティ
AutoAttach プロパティ
AutoLength プロパティ
Border プロパティ
Drop プロパティ
DropType プロパティ
Gap プロパティ
Length プロパティ
Parent プロパティ
Type プロパティ
AutomaticLength メソッド
CustomDrop メソッド
CustomLength メソッド
PresetDrop メソッド
CaptionStyle オブジェクト
Application プロパティ
Name プロパティ
Parent プロパティ

CaptionStyles オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Item メソッド

CatalogMergeShapes オブジェクト

Application プロパティ
Count プロパティ
HorizontalRepeat プロパティ
Parent プロパティ
VerticalRepeat プロパティ
Item メソッド
Range メソッド

Cell オブジェクト

Application プロパティ
BorderBottom プロパティ
BorderDiagonal プロパティ
BorderLeft プロパティ
BorderRight プロパティ
BorderTop プロパティ
CellTextOrientation プロパティ
Column プロパティ
Diagonal プロパティ
Fill プロパティ
HasText プロパティ
Height プロパティ
MarginBottom プロパティ
MarginLeft プロパティ
MarginRight プロパティ
MarginTop プロパティ
Parent プロパティ
Row プロパティ
Selected プロパティ
TextRange プロパティ
VerticalTextAlignment プロパティ
Width プロパティ
Merge メソッド
Select メソッド
Split メソッド

CellBorder オブジェクト

Application プロパティ
Color プロパティ
Parent プロパティ
Weight プロパティ

CellRange オブジェクト

Application プロパティ
Column プロパティ
Count プロパティ
Height プロパティ
Parent プロパティ
Row プロパティ
Width プロパティ
Item メソッド
Merge メソッド
Select メソッド

ColorCMYK オブジェクト

Application プロパティ
Black プロパティ
Cyan プロパティ
Magenta プロパティ
Parent プロパティ
Yellow プロパティ
SetCMYK メソッド

ColorFormat オブジェクト

Application プロパティ
BaseCMYK プロパティ
BaseRGB プロパティ
CMYK プロパティ
Ink プロパティ
Parent プロパティ
RGB プロパティ
SchemeColor プロパティ
TintAndShade プロパティ
Transparency プロパティ
Type プロパティ

ColorScheme オブジェクト

Application プロパティ
Colors プロパティ
Name プロパティ
Parent プロパティ

ColorSchemes オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ

ColorsInUse オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ

Column オブジェクト

Application プロパティ
Cells プロパティ
Parent プロパティ
Width プロパティ
Delete メソッド

Columns オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Add メソッド
Item メソッド

ConnectorFormat オブジェクト

Application プロパティ
BeginConnected プロパティ
BeginConnectedShape プロパティ
BeginConnectionSite プロパティ
EndConnected プロパティ
EndConnectedShape プロパティ
EndConnectionSite プロパティ
Parent プロパティ
Type プロパティ
BeginConnect メソッド
BeginDisconnect メソッド
EndConnect メソッド
EndDisconnect メソッド

Document オブジェクト

ActiveView プロパティ
ActiveWindow プロパティ
AdvancedPrintOptions プロパティ
Application プロパティ
AvailableBuildingBlocks プロパティ
BorderArts プロパティ
ColorScheme プロパティ
DefaultTabStop プロパティ
DocumentDirection プロパティ
EnvelopeVisible プロパティ
Find プロパティ
FullName プロパティ
IsDataSourceConnected プロパティ
IsWizard プロパティ
LayoutGuides プロパティ
MailEnvelope プロパティ
MailMerge プロパティ
MasterPages プロパティ
Name プロパティ
Pages プロパティ
PageSetup プロパティ
Parent プロパティ
Path プロパティ
PrintPageBackgrounds プロパティ
PrintStyle プロパティ
PublicationType プロパティ
ReadOnly プロパティ
RedoActionsAvailable プロパティ
RemovePersonalInformation プロパティ
Saved プロパティ
SaveFormat プロパティ
ScratchArea プロパティ
Sections プロパティ
Selection プロパティ
Stories プロパティ
SurplusShapes プロパティ
Tags プロパティ
TextStyles プロパティ
UndoActionsAvailable プロパティ
ViewBoundaries プロパティ
ViewGuides プロパティ
ViewHorizontalBaseLineGuides プロパティ
ViewTwoPageSpread プロパティ
ViewVerticalBaseLineGuides プロパティ
WebNavigationBarSets プロパティ
Wizard プロパティ
BeginCustomUndoAction メソッド
ChangeDocument メソッド
Close メソッド
ConvertPublicationType メソッド
EndCustomUndoAction メソッド
ExportAsFixedFormat メソッド
FindShapeByWizardTag メソッド
FindShapesByTag メソッド
PrintOutEx メソッド
Redo メソッド
Save メソッド
SaveAs メソッド
SetBusinessInformation メソッド
Undo メソッド
UndoClear メソッド
UpdateOLEObjects メソッド
WebPagePreview メソッド
BeforeClose イベント
Open イベント
Redo イベント
ShapesAdded イベント
ShapesRemoved イベント
Undo イベント
WizardAfterChange イベント

Documents オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
Add メソッド

DropCap オブジェクト

Application プロパティ
FontBold プロパティ
FontColor プロパティ
FontItalic プロパティ
FontName プロパティ
LinesUp プロパティ
Parent プロパティ
Size プロパティ
Span プロパティ
ApplyCustomDropCap メソッド
Clear メソッド

EmailMergeEnvelope オブジェクト

Application プロパティ
Attachemts プロパティ
Bcc プロパティ
Cc プロパティ
Parent プロパティ
Priority プロパティ
Subject プロパティ
To プロパティ

Field オブジェクト

Application プロパティ
Code プロパティ
Next プロパティ
Parent プロパティ
PhoneticGuide プロパティ
Result プロパティ
TextRange プロパティ
Type プロパティ
Unlink メソッド

Fields オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
AddHorizontalInVertical メソッド
AddPhoneticGuide メソッド
Item メソッド
Unlink メソッド

FillFormat オブジェクト

Application プロパティ
BackColor プロパティ
ForeColor プロパティ
GradientAngle プロパティ
GradientColorType プロパティ
GradientDegree プロパティ
GradientStyle プロパティ
GradientVariant プロパティ
Parent プロパティ
Pattern プロパティ
PresetGradientType プロパティ
PresetTexture プロパティ
RotateWithObject プロパティ
TextureAlignment プロパティ
TextureHorizontalScale プロパティ
TextureName プロパティ
TextureOffsetX プロパティ
TextureOffsetY プロパティ
TextureType プロパティ
TextureVerticalScale プロパティ
Transparency プロパティ
Type プロパティ
Visible プロパティ
OneColorGradient メソッド
Patterned メソッド
PresetGradient メソッド
PresetTextured メソッド
Solid メソッド
TwoColorGradient メソッド
UserPicture メソッド
UserTextured メソッド

FindReplace オブジェクト

Application プロパティ
FindText プロパティ
Forward プロパティ
FoundTextRange プロパティ
MatchAlefHamza プロパティ
MatchCase プロパティ
MatchDiacritics プロパティ
MatchKashida プロパティ
MatchWholeWord プロパティ
MatchWidth プロパティ
Parent プロパティ
ReplaceScope プロパティ
ReplaceWithText プロパティ
Clear メソッド
Execute メソッド

Font オブジェクト

AllCaps プロパティ
Application プロパティ
AttachedToText プロパティ
AutomaticPairKerningThreshold プロパティ
Bold プロパティ
BoldBi プロパティ
ContextualAlternates プロパティ
DiacriticColor プロパティ
ExpandUsingKashida プロパティ
Fill プロパティ
Glow プロパティ
Italic プロパティ
ItalicBi プロパティ
Kerning プロパティ
Ligature プロパティ
Line プロパティ
Name プロパティ
NumberStyle プロパティ
Parent プロパティ
Position プロパティ
Reflection プロパティ
Scaling プロパティ
Size プロパティ
SizeBi プロパティ
SmallCaps プロパティ
StrikeThrough プロパティ
StylisticAlternates プロパティ
StylisticSets プロパティ
SubScript プロパティ
SuperScript プロパティ
Swash プロパティ
TextShadow プロパティ
ThreeD プロパティ
Tracking プロパティ
TrackingPreset プロパティ
Underline プロパティ
UseDiacriticColor プロパティ
Duplicate メソッド
GetScriptName メソッド
Grow メソッド
Reset メソッド
SetScriptName メソッド
Shrink メソッド

FreeformBuilder オブジェクト

Application プロパティ
Parent プロパティ
AddNodes メソッド
ConvertToShape メソッド

GlowFormat オブジェクト

Color プロパティ
Radius プロパティ
Transparency プロパティ
Visible プロパティ

GroupShapes オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Item メソッド

HeaderFooter オブジェクト

Application プロパティ
IsHeader プロパティ
Parent プロパティ
TextRange プロパティ
Delete メソッド

Hyperlink オブジェクト

Address プロパティ
Application プロパティ
EmailSubject プロパティ
PageID プロパティ
Parent プロパティ
Range プロパティ
Shape プロパティ
TargetType プロパティ
TextToDisplay プロパティ
Type プロパティ
Delete メソッド
SetPageRelative メソッド

Hyperlinks オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
Add メソッド

InlineShapes オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Range プロパティ
Item メソッド

InstalledPrinters オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ

LayoutGuides オブジェクト

Application プロパティ
ColumnGutterWidth プロパティ
Columns プロパティ
GutterCenterlines プロパティ
HorizontalBaseLineOffset プロパティ
HorizontalBaseLineSpacing プロパティ
MarginBottom プロパティ
MarginLeft プロパティ
MarginRight プロパティ
MarginTop プロパティ
MirrorGuides プロパティ
Parent プロパティ
RowGutterWidth プロパティ
Rows プロパティ
VerticalBaseLineOffset プロパティ
VerticalBaseLineSpacing プロパティ

LineFormat オブジェクト

Application プロパティ
BackColor プロパティ
BeginArrowheadLength プロパティ
BeginArrowheadStyle プロパティ
BeginArrowheadWidth プロパティ
CapStyle プロパティ
DashStyle プロパティ
EndArrowheadLength プロパティ
EndArrowheadStyle プロパティ
EndArrowheadWidth プロパティ
ForeColor プロパティ
GradientAngle プロパティ
GradientColorType プロパティ
GradientStyle プロパティ
GradientVariant プロパティ
InsetPen プロパティ
JoinStyle プロパティ
Parent プロパティ
Pattern プロパティ
PresetGradientType プロパティ
Style プロパティ
Transparency プロパティ
Type プロパティ
Visible プロパティ
Weight プロパティ
PresetGradient メソッド

LinkFormat オブジェクト

Application プロパティ
Parent プロパティ
SourceFullName プロパティ
Update メソッド

MailMerge オブジェクト

Application プロパティ
DataSource プロパティ
DocumentUpdating プロパティ
EmailMergeEnvelope プロパティ
Parent プロパティ
SuppressBlankLines プロパティ
Type プロパティ
ViewMailMergeFieldCodes プロパティ
WizardState プロパティ
CreateShortcut メソッド
Execute メソッド
ExportRecipientList メソッド
OpenDataSource メソッド
ShowWizardEx メソッド

MailMergeDataField オブジェクト

FieldType プロパティ
Application プロパティ
Creator プロパティ
Index プロパティ
IsMapped プロパティ
MappedTo プロパティ
Name プロパティ
Parent プロパティ
Value プロパティ
AddToRecipientFields メソッド
Insert メソッド
MapToRecipientField メソッド
UnMapRecipientField メソッド

MailMergeDataFields オブジェクト

Application プロパティ
Count プロパティ
Creator プロパティ
Parent プロパティ
Item メソッド

MailMergeDataSource オブジェクト

ActiveRecord プロパティ
Application プロパティ
ConnectString プロパティ
DataFields プロパティ
DataSources プロパティ
EverValidated プロパティ
Filters プロパティ
FirstRecord プロパティ
Included プロパティ
InvalidAddress プロパティ
InvalidComments プロパティ
IsMaster プロパティ
LastRecord プロパティ
MappedDataFields プロパティ
Name プロパティ
Parent プロパティ
RecordCount プロパティ
TableName プロパティ
Type プロパティ
ValidatedClean プロパティ
ApplyFilter メソッド
Close メソッド
EditRecord メソッド
FindRecord メソッド
OpenRecipientsDialog メソッド
SetAllErrorFlags メソッド
SetAllIncludedFlags メソッド
SetSortOrder メソッド

MailMergeDataSources オブジェクト

Application プロパティ
Count プロパティ
Creator プロパティ
Parent プロパティ
Item メソッド

MailMergeFilterCriterion オブジェクト

Application プロパティ
Column プロパティ
CompareTo プロパティ
Comparison プロパティ
Conjunction プロパティ
Creator プロパティ
Index プロパティ
Parent プロパティ

MailMergeFilters オブジェクト

Application プロパティ
Count プロパティ
Creator プロパティ
Parent プロパティ
Add メソッド
Delete メソッド
Item メソッド

MailMergeMappedDataField オブジェクト

Application プロパティ
DataFieldName プロパティ
Index プロパティ
Name プロパティ
Parent プロパティ
Value プロパティ

MailMergeMappedDataFields オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Item メソッド

MasterPages オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
Add メソッド
FindByPageID メソッド

ObjectVerbs オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Item メソッド

OLEFormat オブジェクト

Application プロパティ
Object プロパティ
ObjectVerbs プロパティ
Parent プロパティ
ProgId プロパティ
Activate メソッド
DoVerb メソッド

Options オブジェクト

AddHebDoubleQuote プロパティ
AllowBackgroundSave プロパティ
Application プロパティ
AutoFormatWord プロパティ
AutoHyphenate プロパティ
AutoKeyboardSwitching プロパティ
AutoSelectWord プロパティ
DefaultPubDirection プロパティ
DefaultTextFlowDirection プロパティ
DisplayStatusBar プロパティ
DragAndDropText プロパティ
HyphenationZone プロパティ
MeasurementUnit プロパティ
Parent プロパティ
PathForPictures プロパティ
PathForPublications プロパティ
SaveAutoRecoverInfo プロパティ
SaveAutoRecoverInfoInterval プロパティ
SequenceCheck プロパティ
ShowBasicColors プロパティ
ShowScreenTipsOnObjects プロパティ
ShowTipPages プロパティ
TypeNReplace プロパティ
UseCatalogAtStartup プロパティ
UseWizardForBlankPublication プロパティ
ResetTips メソッド
ResetWizardSynchronizing メソッド

Page オブジェクト

Application プロパティ
Background プロパティ
Footer プロパティ
Header プロパティ
Height プロパティ
IgnoreMaster プロパティ
IsLeading プロパティ
IsTrailing プロパティ
IsTwoPageMaster プロパティ
IsWizardPage プロパティ
LayoutGuides プロパティ
Master プロパティ
Name プロパティ
PageID プロパティ
PageIndex プロパティ
PageNumber プロパティ
PageType プロパティ
Parent プロパティ
ReaderSpread プロパティ
RulerGuides プロパティ
Shapes プロパティ
Tags プロパティ
WebPageOptions プロパティ
Width プロパティ
Wizard プロパティ
XOffsetWithinReaderSpread プロパティ
YOffsetWithinReaderSpread プロパティ
Delete メソッド
Duplicate メソッド
ExportEmailHTML メソッド
Move メソッド
SaveAsPicture メソッド

PageBackground オブジェクト

Application プロパティ
Exists プロパティ
Fill プロパティ
Parent プロパティ
Create メソッド
Delete メソッド

Pages オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
Add メソッド
AddWizardPage メソッド
FindByPageID メソッド

PageSetup オブジェクト

Application プロパティ
AvailablePageSizes プロパティ
HorizontalGap プロパティ
LeftMargin プロパティ
PageHeight プロパティ
PageSize プロパティ
PageWidth プロパティ
Parent プロパティ
PublicationLayout プロパティ
TopMargin プロパティ
VerticalGap プロパティ

PageSize オブジェクト

Application プロパティ
HasBackgroundImage プロパティ
HorizontalGap プロパティ
LeftMargin プロパティ
Name プロパティ
PageHeight プロパティ
PageWidth プロパティ
Parent プロパティ
TopMargin プロパティ
VerticalGap プロパティ

PageSizes オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ

ParagraphFormat オブジェクト

Alignment プロパティ
Application プロパティ
AttachedToText プロパティ
CharBasedFirstLineIndent プロパティ
FirstLineIndent プロパティ
KashidaPercentage プロパティ
KeepLinesTogether プロパティ
KeepWithNext プロパティ
LeftIndent プロパティ
LineSpacing プロパティ
LineSpacingRule プロパティ
ListBulletFontName プロパティ
ListBulletFontSize プロパティ
ListBulletText プロパティ
ListIndent プロパティ
ListNumberSeparator プロパティ
ListNumberStart プロパティ
ListType プロパティ
LockToBaseLine プロパティ
Parent プロパティ
RightIndent プロパティ
SpaceAfter プロパティ
SpaceBefore プロパティ
StartInNextTextBox プロパティ
Tabs プロパティ
TextDirection プロパティ
TextStyle プロパティ
UseCharBasedFirstLineIndent プロパティ
WidowControl プロパティ
Duplicate メソッド
Reset メソッド
SetLineSpacing メソッド
SetListType メソッド

PhoneticGuide オブジェクト

Alignment プロパティ
Application プロパティ
BaseText プロパティ
FontName プロパティ
FontSize プロパティ
Parent プロパティ
Raise プロパティ
Text プロパティ
Clear メソッド

PictureFormat オブジェクト

Application プロパティ
Brightness プロパティ
ColorModel プロパティ
ColorsInPalette プロパティ
ColorType プロパティ
Contrast プロパティ
CropBottom プロパティ
CropLeft プロパティ
CropRight プロパティ
CropTop プロパティ
EffectiveResolution プロパティ
Filename プロパティ
FileSize プロパティ
HasAlphaChannel プロパティ
HasTransparencyColor プロパティ
Height プロパティ
HorizontalPictureLocking プロパティ
HorizontalScale プロパティ
ImageFormat プロパティ
IsEmpty プロパティ
IsGreyScale プロパティ
IsLinked プロパティ
IsRecolored プロパティ
IsTrueColor プロパティ
LeaveBlackAsBlack プロパティ
LinkedFileStatus プロパティ
OriginalColorsInPalette プロパティ
OriginalFileSize プロパティ
OriginalHasAlphaChannel プロパティ
OriginalHeight プロパティ
OriginalIsTrueColor プロパティ
OriginalResolution プロパティ
OriginalWidth プロパティ
Parent プロパティ
RecoloredPictureColor プロパティ
TransparencyColor プロパティ
TransparentBackground プロパティ
VerticalPictureLocking プロパティ
VerticalScale プロパティ
Width プロパティ
ClearCrop メソッド
FillFrame メソッド
FitFrame メソッド
IncrementBrightness メソッド
IncrementContrast メソッド
Recolor メソッド
Remove メソッド
Replace メソッド
ReplaceEx メソッド
RestoreOriginalColors メソッド

Plate オブジェクト

Application プロパティ
Color プロパティ
Index プロパティ
InkName プロパティ
InUse プロパティ
Luminance プロパティ
Name プロパティ
Parent プロパティ
ConvertToProcess メソッド
Delete メソッド

Plates オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
Add メソッド
FindPlateByInkName メソッド

PrintablePlate オブジェクト

PrintableRect オブジェクト

Application プロパティ
Height プロパティ
Left プロパティ
Parent プロパティ
Top プロパティ
Width プロパティ

PrintablePlates オブジェクト

Printer オブジェクト

Application プロパティ
DriverType プロパティ
Index プロパティ
IsActivePrinter プロパティ
IsColor プロパティ
IsDuplex プロパティ
PaperHeight プロパティ
PaperOrientation プロパティ
PaperSize プロパティ
PaperSource プロパティ
PaperWidth プロパティ
Parent プロパティ
PrintableRect プロパティ
PrinterName プロパティ
PrintMode プロパティ

ReaderSpread オブジェクト

Application プロパティ
Height プロパティ
Left プロパティ
PageCount プロパティ
Pages プロパティ
Parent プロパティ
Top プロパティ
Width プロパティ

ReflectionFormat オブジェクト

Blur プロパティ
Offset プロパティ
Size プロパティ
Transparency プロパティ
Type プロパティ
Visible プロパティ
Row オブジェクト
Application プロパティ
Cells プロパティ
Height プロパティ
Parent プロパティ
Delete メソッド

Rows オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Add メソッド
Item メソッド

RulerGuide オブジェクト

Application プロパティ
Parent プロパティ
Position プロパティ
Type プロパティ
Delete メソッド

RulerGuides オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
Add メソッド

ScratchArea オブジェクト

Application プロパティ
Parent プロパティ
Shapes プロパティ

Section オブジェクト

Application プロパティ
ContinueNumbersFromPreviousSection プロパティ
PageNumberFormat プロパティ
PageNumberStart プロパティ
Parent プロパティ
ShowHeaderFooterOnFirstPage プロパティ
StartPageIndex プロパティ
Delete メソッド

Sections オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
Add メソッド

Selection オブジェクト

Application プロパティ
ChildShapeRange プロパティ
Parent プロパティ
ShapeRange プロパティ
TableCellRange プロパティ
TextRange プロパティ
Type プロパティ
Unselect メソッド

ShadowFormat オブジェクト

Application プロパティ
Blur プロパティ
ForeColor プロパティ
Obscured プロパティ
OffsetX プロパティ
OffsetY プロパティ
Parent プロパティ
RotateWithShape プロパティ
Size プロパティ
Type プロパティ
Visible プロパティ
IncrementOffsetX メソッド
IncrementOffsetY メソッド

Shape オブジェクト

Adjustments プロパティ
AlternativeText プロパティ
Application プロパティ
AutoShapeType プロパティ
BlackWhiteMode プロパティ
BorderArt プロパティ
Callout プロパティ
CatalogMergeItems プロパティ
ConnectionSiteCount プロパティ
Connector プロパティ
ConnectorFormat プロパティ
Fill プロパティ
Glow プロパティ
GroupItems プロパティ
HasTable プロパティ
HasTextFrame プロパティ
Height プロパティ
HorizontalFlip プロパティ
Hyperlink プロパティ
ID プロパティ
InlineAlignment プロパティ
InlineTextRange プロパティ
IsExcess プロパティ
IsGroupMember プロパティ
IsInline プロパティ
Left プロパティ
Line プロパティ
LinkFormat プロパティ
LockAspectRatio プロパティ
Name プロパティ
Nodes プロパティ
OLEFormat プロパティ
Parent プロパティ
ParentGroupShape プロパティ
PictureFormat プロパティ
Reflection プロパティ
Rotation プロパティ
Shadow プロパティ
SoftEdge プロパティ
Table プロパティ
Tags プロパティ
TextEffect プロパティ
TextFrame プロパティ
TextWrap プロパティ
ThreeD プロパティ
Top プロパティ
Type プロパティ
VerticalFlip プロパティ
Vertices プロパティ
WebCheckBox プロパティ
WebCommandButton プロパティ
WebListBox プロパティ
WebNavigationBarSetName プロパティ
WebOptionButton プロパティ
WebTextBox プロパティ
Width プロパティ
Wizard プロパティ
WizardTag プロパティ
WizardTagInstance プロパティ
ZOrderPosition プロパティ
AddToCatalogMergeArea メソッド
Apply メソッド
Copy メソッド
Cut メソッド
Delete メソッド
Duplicate メソッド
Flip メソッド
GetHeight メソッド
GetLeft メソッド
GetTop メソッド
GetWidth メソッド
IncrementLeft メソッド
IncrementRotation メソッド
IncrementTop メソッド
MoveIntoTextFlow メソッド
MoveOutOfTextFlow メソッド
MoveToPage メソッド
PickUp メソッド
RemoveCatalogMergeArea メソッド
RemoveFromCatalogMergeArea メソッド
RerouteConnections メソッド
SaveAsBuildingBlock メソッド
SaveAsPicture メソッド
ScaleHeight メソッド
ScaleWidth メソッド
Select メソッド
SetCaption メソッド
SetShapesDefaultProperties メソッド
Ungroup メソッド
ZOrder メソッド

ShapeNode オブジェクト

Application プロパティ
EditingType プロパティ
Parent プロパティ
Points プロパティ
SegmentType プロパティ

ShapeNodes オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Delete メソッド
Insert メソッド
Item メソッド
SetEditingType メソッド
SetPosition メソッド
SetSegmentType メソッド

ShapeRange オブジェクト

Adjustments プロパティ
AlternativeText プロパティ
Application プロパティ
AutoShapeType プロパティ
BlackWhiteMode プロパティ
Callout プロパティ
ConnectionSiteCount プロパティ
Connector プロパティ
ConnectorFormat プロパティ
Count プロパティ
Fill プロパティ
Glow プロパティ
GroupItems プロパティ
HasTable プロパティ
HasTextFrame プロパティ
Height プロパティ
HorizontalFlip プロパティ
Hyperlink プロパティ
ID プロパティ
InlineAlignment プロパティ
InlineTextRange プロパティ
IsInline プロパティ
Left プロパティ
Line プロパティ
LinkFormat プロパティ
LockAspectRatio プロパティ
Name プロパティ
Nodes プロパティ
OLEFormat プロパティ
Parent プロパティ
PictureFormat プロパティ
Reflection プロパティ
Rotation プロパティ
Shadow プロパティ
SoftEdge プロパティ
Table プロパティ
Tags プロパティ
TextEffect プロパティ
TextFrame プロパティ
TextWrap プロパティ
ThreeD プロパティ
Top プロパティ
Type プロパティ
VerticalFlip プロパティ
Vertices プロパティ
Width プロパティ
Wizard プロパティ
WizardTag プロパティ
WizardTagInstance プロパティ
ZOrderPosition プロパティ
AddToCatalogMergeArea メソッド
Align メソッド
Apply メソッド
Copy メソッド
Cut メソッド
Delete メソッド
Distribute メソッド
Duplicate メソッド
Flip メソッド
GetHeight メソッド
GetLeft メソッド
GetTop メソッド
GetWidth メソッド
Group メソッド
IncrementLeft メソッド
IncrementRotation メソッド
IncrementTop メソッド
Item メソッド
MoveIntoTextFlow メソッド
MoveOutOfTextFlow メソッド
PickUp メソッド
Regroup メソッド
RemoveFromCatalogMergeArea メソッド
RerouteConnections メソッド
SaveAsBuildingBlock メソッド
SaveAsPicture メソッド
ScaleHeight メソッド
ScaleWidth メソッド
Select メソッド
SetShapesDefaultProperties メソッド
Ungroup メソッド
ZOrder メソッド

Shapes オブジェクト

Application プロパティ
CanvasArrangementType プロパティ
CanvasesCount プロパティ
Count プロパティ
Parent プロパティ
AddBuildingBlock メソッド
AddCallout メソッド
AddCatalogMergeArea メソッド
AddCatalogMergeFieldToCanvas メソッド
AddConnector メソッド
AddCurve メソッド
AddEmptyPictureFrame メソッド
AddGroupWizard メソッド
AddLabel メソッド
AddLine メソッド
AddOLEObject メソッド
AddPicture メソッド
AddPolyline メソッド
AddShape メソッド
AddTable メソッド
AddTextbox メソッド
AddTextEffect メソッド
AddWebControl メソッド
AddWebNavigationBar メソッド
AddWordArt メソッド
BuildFreeform メソッド
FindShapeByWizardTag メソッド
Item メソッド
Paste メソッド
Range メソッド
SelectAll メソッド

SoftEdgeFormat オブジェクト

Radius プロパティ
Type プロパティ
Visible プロパティ

Stories オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Item メソッド

Story オブジェクト

Application プロパティ
HasTable プロパティ
HasTextFrame プロパティ
Parent プロパティ
Table プロパティ
TextFrame プロパティ
TextRange プロパティ
Type プロパティ

Table オブジェクト

Application プロパティ
Cells プロパティ
Columns プロパティ
GrowToFitText プロパティ
Parent プロパティ
Rows プロパティ
TableDirection プロパティ
ApplyAutoFormat メソッド

TabStop オブジェクト

Alignment プロパティ
Application プロパティ
Leader プロパティ
Parent プロパティ
Position プロパティ
Clear メソッド

TabStops オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Add メソッド
ClearAll メソッド
Item メソッド
Tag オブジェクト
Application プロパティ
Name プロパティ
Parent プロパティ
Value プロパティ
Delete メソッド

Tags オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Add メソッド
Item メソッド

TextEffectFormat オブジェクト

Alignment プロパティ
Application プロパティ
FontBold プロパティ
FontItalic プロパティ
FontName プロパティ
FontSize プロパティ
KernedPairs プロパティ
NormalizedHeight プロパティ
Parent プロパティ
PresetShape プロパティ
PresetTextEffect プロパティ
PresetWordArt プロパティ
RotatedChars プロパティ
Text プロパティ
Tracking プロパティ
ToggleVerticalText メソッド

TextFrame オブジェクト

Application プロパティ
AutoFitText プロパティ
Columns プロパティ
ColumnSpacing プロパティ
HasNextLink プロパティ
HasPreviousLink プロパティ
HasText プロパティ
IncludeContinuedFromPage プロパティ
IncludeContinuedOnPage プロパティ
MarginBottom プロパティ
MarginLeft プロパティ
MarginRight プロパティ
MarginTop プロパティ
NextLinkedTextFrame プロパティ
Orientation プロパティ
Overflowing プロパティ
Parent プロパティ
PreviousLinkedTextFrame プロパティ
Story プロパティ
TextRange プロパティ
VerticalTextAlignment プロパティ
BreakForwardLink メソッド
ValidLinkTarget メソッド

TextRange オブジェクト

BoundHeight プロパティ
BoundLeft プロパティ
BoundTop プロパティ
BoundWidth プロパティ
ContainingObject プロパティ
DropCap プロパティ
Duplicate プロパティ
End プロパティ
Fields プロパティ
Find プロパティ
Font プロパティ
Hyperlinks プロパティ
InlineShapes プロパティ
LanguageID プロパティ
Length プロパティ
LinesCount プロパティ
MajorityFont プロパティ
MajorityParagraphFormat プロパティ
ParagraphFormat プロパティ
ParagraphsCount プロパティ
Script プロパティ
Start プロパティ
Text プロパティ
WordsCount プロパティ
Characters メソッド
Collapse メソッド
Copy メソッド
Cut メソッド
Delete メソッド
Expand メソッド
InsertAfter メソッド
InsertBarcode メソッド
InsertBefore メソッド
InsertDateTime メソッド
InsertMailMergeField メソッド
InsertPageNumber メソッド
InsertSymbol メソッド
Lines メソッド
Move メソッド
MoveEnd メソッド
MoveStart メソッド
Paragraphs メソッド
Paste メソッド
Select メソッド
Words メソッド

TextStyle オブジェクト

Application プロパティ
BaseStyle プロパティ
Description プロパティ
Font プロパティ
Name プロパティ
NextParagraphStyle プロパティ
ParagraphFormat プロパティ
Parent プロパティ
Delete メソッド

TextStyles オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Add メソッド
Item メソッド

ThreeDFormat オブジェクト

Application プロパティ
BevelBottomDepth プロパティ
BevelBottomInset プロパティ
BevelBottomType プロパティ
BevelTopDepth プロパティ
BevelTopInset プロパティ
BevelTopType プロパティ
ContourColor プロパティ
ContourWidth プロパティ
Depth プロパティ
ExtrusionColor プロパティ
ExtrusionColorType プロパティ
FieldOfView プロパティ
Parent プロパティ
Perspective プロパティ
PresetExtrusionDirection プロパティ
PresetLightingDirection プロパティ
PresetLightingSoftness プロパティ
PresetMaterial プロパティ
PresetThreeDFormat プロパティ
RotationX プロパティ
RotationY プロパティ
Visible プロパティ
IncrementRotationX メソッド
IncrementRotationY メソッド
ResetRotation メソッド
SetExtrusionDirection メソッド
SetThreeDFormat メソッド

View オブジェクト

ActivePage プロパティ
Application プロパティ
Parent プロパティ
Zoom プロパティ
ScrollShapeIntoView メソッド
ZoomIn メソッド
ZoomOut メソッド

WebCheckBox オブジェクト

Application プロパティ
Parent プロパティ
ReturnDataLabel プロパティ
Selected プロパティ
Value プロパティ

WebCommandButton オブジェクト

ActionURL プロパティ
Application プロパティ
ButtonText プロパティ
ButtonType プロパティ
DataFileFormat プロパティ
DataFileName プロパティ
DataRetrievalMethod プロパティ
EmailAddress プロパティ
EmailSubject プロパティ
HiddenFields プロパティ
Parent プロパティ
PostFormData プロパティ

WebHiddenFields オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Add メソッド
Delete メソッド
Item メソッド
Name メソッド

WebListBox オブジェクト

Application プロパティ
ListBoxItems プロパティ
MultiSelect プロパティ
Parent プロパティ
ReturnDataLabel プロパティ

WebListBoxItems オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
AddItem メソッド
Delete メソッド
Item メソッド
Selected メソッド

WebNavigationBarHyperlinks オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
Add メソッド
Item メソッド

WebNavigationBarSet オブジェクト

Application プロパティ
AutoUpdate プロパティ
ButtonStyle プロパティ
Design プロパティ
HorizontalAlignment プロパティ
HorizontalButtonCount プロパティ
IsHorizontal プロパティ
Links プロパティ
Name プロパティ
Parent プロパティ
ShowSelected プロパティ
AddToEveryPage メソッド
ChangeOrientation メソッド
DeleteSetAndInstances メソッド

WebNavigationBarSets オブジェクト

Application プロパティ
Count プロパティ
Parent プロパティ
AddSet メソッド
Item メソッド

WebOptionButton オブジェクト

Application プロパティ
Parent プロパティ
ReturnDataLabel プロパティ
Selected プロパティ
Value プロパティ

WebOptions オブジェクト

AlwaysSaveInDefaultEncoding プロパティ
Application プロパティ
EmailAsImg プロパティ
EnableIncrementalUpload プロパティ
Encoding プロパティ
OrganizeInFolder プロパティ
Parent プロパティ
RelyOnVML プロパティ
ShowOnlyWebFonts プロパティ

WebPageOptions オブジェクト

Application プロパティ
BackgroundSound プロパティ
BackgroundSoundLoopCount プロパティ
BackgroundSoundLoopForever プロパティ
Description プロパティ
IncludePageOnNewWebNavigationBars プロパティ
Keywords プロパティ
Parent プロパティ
PublishFileName プロパティ
SetBackgroundSoundRepeat メソッド

WebTextBox オブジェクト

Application プロパティ
DefaultText プロパティ
EchoAsterisks プロパティ
Limit プロパティ
Parent プロパティ
RequiredControl プロパティ
ReturnDataLabel プロパティ

Window オブジェクト

Application プロパティ
Caption プロパティ
Height プロパティ
Hwnd プロパティ
Left プロパティ
Parent プロパティ
Top プロパティ
Visible プロパティ
Width プロパティ
WindowState プロパティ
Activate メソッド
Move メソッド
Resize メソッド

Wizard オブジェクト

Application プロパティ
ID プロパティ
Name プロパティ
Parent プロパティ
Properties プロパティ
SetId メソッド

WizardProperties オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ
FindPropertyById メソッド

WizardProperty オブジェクト

Application プロパティ
CurrentValueId プロパティ
Enabled プロパティ
ID プロパティ
Name プロパティ
Parent プロパティ
Values プロパティ

WizardValue オブジェクト

Application プロパティ
ID プロパティ
Name プロパティ
Parent プロパティ

WizardValues オブジェクト

Application プロパティ
Count プロパティ
Item プロパティ
Parent プロパティ

WrapFormat オブジェクト

Application プロパティ
DistanceAuto プロパティ
DistanceBottom プロパティ
DistanceLeft プロパティ
DistanceRight プロパティ
DistanceTop プロパティ
Parent プロパティ
Side プロパティ
Type プロパティ
列挙型
PbBuildingBlockGallery 列挙型
PbBuildingBlockType 列挙型
PbCalendarType 列挙型
pbCanvasArrangementType 列挙型
pbCatalogMergeFieldType 列挙型
PbCellDiagonalType 列挙型
PbCollapseDirection 列挙型
PbColorModel 列挙型
PbColorScheme 列挙型
PbColorType 列挙型
PbCommandButtonType 列挙型
PbDateTimeFormat 列挙型
PbDirectionType 列挙型
PbDriverType 列挙型
pbEmailMergePriority 列挙型
PbFieldType 列挙型
PbFileFormat 列挙型
PbFixedFormatIntent 列挙型
PbFixedFormatType 列挙型
PbFontScriptType 列挙型
PbHelpType 列挙型
PbHlinkTargetType 列挙型
PbHorizontalPictureLocking 列挙型
PbImageFormat 列挙型
PbInlineAlignment 列挙型
PbLigaturePresetType 列挙型
PbLineSpacingRule 列挙型
PbLinkedFileStatus 列挙型
PbListSeparator 列挙型
PbListType 列挙型
PbMailMergeDataFieldType 列挙型
PbMailMergeDataSource 列挙型
PbMailMergeDestination 列挙型
PbMergeType 列挙型
PbNavBarOrientation 列挙型
PbNumberStylesType 列挙型
PbOrientationType 列挙型
PbPageNumberFormat 列挙型
PbPageNumberType 列挙型
PbPageType 列挙型
PbParagraphAlignmentType 列挙型
PbPersonalInfoSet 列挙型
PbPhoneticGuideAlignmentType 列挙型
PbPictureInsertAs 列挙型
pbPictureInsertFit 列挙型
PbPictureResolution 列挙型
PbPlacementType 列挙型
pbPresetWordArt 列挙型
PbPrintGraphics 列挙型
PbPrintMode 列挙型
PbPrintStyle 列挙型
PbPublicationLayout 列挙型
PbPublicationType 列挙型
PbRecipientListFileType 列挙型
PbReplaceScope 列挙型
PbReplaceTint 列挙型
PbRulerGuideType 列挙型
PbSaveOptions 列挙型
PbSchemeColorIndex 列挙型
PbSelectionType 列挙型
PbShapeType 列挙型
PbStoryType 列挙型
PbSubmitDataFormatType 列挙型
PbSubmitDataRetrievalMethodType 列挙型
PbTabAlignmentType 列挙型
PbTabLeaderType 列挙型
PbTableAutoFormatType 列挙型
PbTableDirectionType 列挙型
PbTextAutoFitType 列挙型
PbTextDirection 列挙型
PbTextOrientation 列挙型
PbTextUnit 列挙型
PbTrackingPresetType 列挙型
PbUnderlineType 列挙型
PbUnitType 列挙型
PbVerticalPictureLocking 列挙型
PbVerticalTextAlignmentType 列挙型
PbWebControlType 列挙型
PbWindowState 列挙型
PbWizard 列挙型
PbWizardGroup 列挙型
PbWizardNavBarAlignment 列挙型
PbWizardNavBarButtonStyle 列挙型
PbWizardNavBarDesign 列挙型
PbWizardPageType 列挙型
PbWizardTag 列挙型
PbWrapSideType 列挙型
PbWrapType 列挙型
PbZoom 列挙型

office 365 dev account|最終更新日: 2017/09/29|2 投稿者

『Publisher VBA リファレンス』のこのセクションには、Publisher オブジェクト モデルに含まれるすべてのオブジェクト、プロパティ、メソッド、およびイベントに関するドキュメントが含まれます。

複数のプラットフォーム間で Office エクスペリエンスを拡張するソリューションを開発することに関心がありますか?新しい Office アドイン モデルを参照してください。
関連トピック

Office VBA の基礎知識:

VBA プログラミングを使用して Office ソリューションをカスタマイズする方法を説明します。

Office 2016 の VBA 向け新機能:

Office 2016 の新しい VBA 言語要素の一覧を示します。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1