Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TMS Diagram Studio
Creating and inserting a diagram block programmatically

MyBlock := TDiagramBlock.Create(Self);
with MyBlock do
begin
  Name := 'MyblockName';
  Left := 10;
  Top := 10;
  Width := 150;
  Height := 50;
  Diagram := atDiagram1;
end;