RunCollection.h
1
// Copyright 2001-2022 Aspose Pty Ltd. All Rights Reserved.
3
//
4
// This file is part of Aspose.Words. The source code in this file
5
// is only intended as a supplement to the documentation, and is provided
6
// "as is", without warranty of any kind, either expressed or implied.
9
#pragma once
10
11
#include <Aspose.Words.Cpp/NodeCollection.h>
12
#include <Aspose.Words.Cpp/aspose_words_api_defs.h>
13
14
namespace
Aspose
15
{
16
namespace
Words
17
{
18
class
CompositeNode;
19
20
class
Run
;
21
}
22
}
23
24
namespace
Aspose
{
25
26
namespace
Words
{
27
81
class
ASPOSE_WORDS_SHARED_CLASS
RunCollection
:
public
Aspose::Words::NodeCollection
82
{
83
typedef
RunCollection
ThisType
;
84
typedef
Aspose::Words::NodeCollection
BaseType;
85
86
typedef ::System::BaseTypesInfo<BaseType>
ThisTypeBaseTypesInfo
;
87
ASPOSE_WORDS_SHARED_RTTI_INFO_DECL();
88
89
public
:
90
155
ASPOSE_WORDS_SHARED_API
System::SharedPtr<Aspose::Words::Run>
idx_get
(int32_t index);
156
212
ASPOSE_WORDS_SHARED_API
System::ArrayPtr<System::SharedPtr<Aspose::Words::Run>
>
ToArray
();
213
214
protected
:
215
216
virtual
ASPOSE_WORDS_SHARED_API ~
RunCollection
();
217
218
};
219
220
}
221
}