We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi.
I tried making a LinkLabel, but seems like it doesn't exist yet. My code:
self.myLabel = LinkLabel(self) self.myLabel.Parent = self self.myLabel.Caption = "Hello World!" self.myLabel.Font.Size = 85 self.myLabel.Width = 650 self.myLabel.Height = 150 self.myLabel.Left = (self.Width - self.myLabel.Width) / 2 self.myLabel.Top = (self.Height - self.myLabel.Height) / 2 self.myLabel.BevelKind = "bkTile"
NameError: name 'LinkLabel' is not defined
The text was updated successfully, but these errors were encountered:
Let's include TLinkLabel to the roadmap.
Sorry, something went wrong.
Wrapper for TLinkLabel Embarcadero/DelphiVCL4Python#44
feb3550
The TLinkLabel wrapper is now available. Check it out:
https://embarcadero.github.io/DelphiVCL4Python/changelog/1.0.2-changelog.html
lmbelo
No branches or pull requests
Hi.
I tried making a LinkLabel, but seems like it doesn't exist yet. My code:
NameError: name 'LinkLabel' is not defined
The text was updated successfully, but these errors were encountered: