Is support change Dimension's decimal separator?
Moderators: SDS, support, admin
Is support change Dimension's decimal separator?
Hi.
I want change over Dimension's decimal separator form ',' to '.' .
Is it possible?
I want change over Dimension's decimal separator form ',' to '.' .
Is it possible?
Re: Is support change Dimension's decimal separator?
Hello,
It is possible to change a decimal separator used in a CAD drawing with a SetDecimalSeparator function implemented in sgConsts.pas. This function sets a value of the DecimalSeparator variable and also returns a previous value of the decimal separator as a result:
Mikhail
It is possible to change a decimal separator used in a CAD drawing with a SetDecimalSeparator function implemented in sgConsts.pas. This function sets a value of the DecimalSeparator variable and also returns a previous value of the decimal separator as a result:
Code: Select all
var
DS: Char;
...
DS := SetDecimalSeparator('.');
try
...
finally
SetDecimalSeparator(DS);
end;
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: Is support change Dimension's decimal separator?
I already test it before post this issue. but dimension's decimal separator dose not changed.
(My CadVcl version is 10.x)
(My CadVcl version is 10.x)
Code: Select all
var
loCad: TsgCadImage;
loDim: TsgDxfDimension;
loSeparator: char;
begin
..
loSeparator := SetDecimalSeparator('.');
try
loDim := TsgDXFDimension.Create;
loDim.LinDefPoint1 := MakeFPoint(...);
..
loCad.Converter.Loads(loDim);
loCad.CurrentLayout.AddEntity(loDim);
..
finally
SetDecimalSeparator(loSeparator );
end;
end;
Re: Is support change Dimension's decimal separator?
Hello,
Could you specify the exact version of CAD VCL (10.0 or 10.1) and your Delphi version?
Mikhail
Could you specify the exact version of CAD VCL (10.0 or 10.1) and your Delphi version?
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: Is support change Dimension's decimal separator?
Delphi: XE8
CadVcl: maybe 10.1 (I don't known how to get the version.)
CadVcl: maybe 10.1 (I don't known how to get the version.)
Re: Is support change Dimension's decimal separator?
Hello,
I didn't take into account that the DecimalSeparator variable value is overridden in the DoubleToStrF function (sgFunction.pas). This function invokes the SetDecimalSeparator function with a value of cnstDoubleSeporator constant (sgFunction.pas). Therefore, you will need to change the cnstDoubleSeporator constant value in the sgFunction.pas unit as shown below.
Mikhail
I didn't take into account that the DecimalSeparator variable value is overridden in the DoubleToStrF function (sgFunction.pas). This function invokes the SetDecimalSeparator function with a value of cnstDoubleSeporator constant (sgFunction.pas). Therefore, you will need to change the cnstDoubleSeporator constant value in the sgFunction.pas unit as shown below.
Code: Select all
const
cnstDoubleSeporator = '.';
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support