1
0
Fork 0

APIDump: Fixed description for schematic file loading.

This commit is contained in:
Mattes D 2016-10-02 17:48:48 +02:00
parent b7d992d211
commit 334de0db64
1 changed files with 8 additions and 0 deletions

View File

@ -951,6 +951,10 @@ return
Type = "string",
},
},
Returns =
{
{ Type = "boolean" },
},
Notes = "Clears current content and loads new content from the specified schematic file. Returns true if successful. Returns false and logs error if unsuccessful, old content is preserved in such a case.",
},
LoadFromSchematicString =
@ -962,6 +966,10 @@ return
Type = "string",
},
},
Returns =
{
{ Type = "boolean" },
},
Notes = "Clears current content and loads new content from the specified string (assumed to contain .schematic data). Returns true if successful. Returns false and logs error if unsuccessful, old content is preserved in such a case.",
},
Merge =