B
blackbox
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure THtmlEditorForm.GetBlockFormatNames(AFormats: TStrings);
var
V : OleVariant;
I: Integer;
begin
V := CoDEGetBlockFmtNamesParam.Create;
DHTMLEdit.ExecCommand(DECMD_GETBLOCKFMTNAMES, OLECMDEXECOPT_DODEFAULT, V);
V := V.Names;
for I := VarArrayLowBound(V, 1) to VarArrayHighBound(V, 1) do
AFormats.Add(V);
end;
var
V : OleVariant;
I: Integer;
begin
V := CoDEGetBlockFmtNamesParam.Create;
DHTMLEdit.ExecCommand(DECMD_GETBLOCKFMTNAMES, OLECMDEXECOPT_DODEFAULT, V);
V := V.Names;
for I := VarArrayLowBound(V, 1) to VarArrayHighBound(V, 1) do
AFormats.Add(V);
end;