SubFile::ID property¶
The ID property contains the unique ID of the sub-document.
string ID { get; }
string getID() throws IGRException;
@property
def ID(self) -> string
std::wstring getID() const;
[propget] HRESULT ID([out, retval] BSTR *result);
Return Value¶
string
: The id 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 |
|