Quantcast
Channel: Indigo Rose Software Forums - Forums
Viewing all articles
Browse latest Browse all 2105

Page.CreateObject OBJECT_INPUT ReadOrder ignored

$
0
0
Hi there,

I'm not sure if this has ever been reported before, I believe I did at some point during the development of Object.lmd.

Code:
Page.CreateObject(OBJECT_INPUT, "test", {
    Alignment = 0;
    BackgroundColor = 16777215;
    Border = 2;
    Enabled = true;
    FontAntiAlias = true;
    FontColor = 0;
    FontItalic = false;
    FontName = "Segoe UI";
    FontScript = 0;
    FontSize = 9;
    FontStrikeout = false;
    FontUnderline = false;
    FontWeight = 400;
    HScrollbar = false;
    Height = 23;
    InputStyle = 0;
    MaskReturnMode = 0;
    MaskText = "";
    Multiline = false;
    Placeholder = " ";
    ReadOnly = false;
    ReadOrder = 0;
    ResizeBottom = false;
    ResizeLeft = false;
    ResizeRight = false;
    ResizeTop = false;
    Text = "";
    TooltipText = "";
    VScrollbar = true;
    Visible = true;
    Width = 200;
    X = 5;
    Y = 32;
});​
In AMS 8.5.0.0, Input.GetProperties("test").ReadOrder will result in `1` and Input.GetProperties("test").ReadOrderBoolean (an undocumented property) will also be true.
Setting ReadOrderBoolean in CreateObject will not solve this issue. What would be a nice pure-AMS workaround?

Viewing all articles
Browse latest Browse all 2105

Trending Articles