Skip to content

Instantly share code, notes, and snippets.

@tablacus
Last active November 20, 2021 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tablacus/65f5e0e3c8d27e282e0e015a19a840fe to your computer and use it in GitHub Desktop.
Save tablacus/65f5e0e3c8d27e282e0e015a19a840fe to your computer and use it in GitHub Desktop.
Split right 1 left 2 - Tablacus Explorer * require split
const TC = [await te.Ctrl(CTRL_TC)];
await Addons.Split.Exec2(3, TC);
TC[0].Left = 0;
TC[0].Top = 0;
TC[0].Width = "50%";
TC[0].Height = "50%";
TC[1].Left = 0;
TC[1].Top = "50%";
TC[1].Width = "50%";
TC[1].Height = "50%";
TC[2].Left = "50%";
TC[2].Top = 0;
TC[2].Width = "50%";
TC[2].Height = "100%";
FV = await TC[0].Selected;
FV.Focus();
ChangeView(FV);
@tablacus
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment