Kambiz wrote:I'll consider these issues for the next release.
Thank you.
Kambiz wrote:Thank you.
Changes will be available during run-time, but at design-time the old code will be active.
if Owner.ShowLinkLabels = true then //new line
if (TextRegion <> 0) then .... //existing code
function GetCommonValueOfSelectedObjects(ObjectClass:TGraphObjectClass, property:string): Variant;
Kambiz wrote:... do not store value in the resource...
Kambiz wrote: 12. I thought maybe it's more convenient for users to use the terminology used in TLabel.
When you declare a property, you can specify a default value for it. Delphi uses the default value to determine whether to store the property in a form file. If you do not specify a default value for a property, Delphi always stores the property.
To specify a default value for a property, append the default directive to the property’s declaration (or redeclaration), followed by the default value. For example,
property Cool Boolean read GetCool write SetCool default True;
Note: Declaring a default value does not set the property to that value. The component’s constructor method should initialize property values when appropriate. However, since objects always initialize their fields to 0, it is not strictly necessary for the constructor to set integer properties to 0, string properties to null, or Boolean properties to False.
Return to DELPHI AREA Projects
Users browsing this forum: No registered users and 19 guests