SubFile::Name property¶
The Name property displays name of the sub-document, if available.
string Name { get; }
string getName() throws IGRException;
@property
def Name(self) -> string
std::wstring getName() const;
[propget] HRESULT Name([out, retval] BSTR *result);
Return Value¶
string
: The name of the subfile.
Sample Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
1 2 3 4 5 6 7 8 9 10 11 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|