You are not logged in.
Pages: 1
function TDocVariantData.GetObjectExistingByName(
const aName: RawUtf8): PDocVariantData;
begin
// Is this code correct?
result := GetDocVariantExistingByName(aName, dvArray);
end;
function TDocVariantData.GetArrayExistingByName(
const aName: RawUtf8): PDocVariantData;
begin
// and this
result := GetDocVariantExistingByName(aName, dvObject);
end;
Offline
yes, it is right, thank you!
Offline
Pages: 1