Text ForColor Property

SyntaxEditor for Windows Forms Forum

Posted 17 years ago by ernesto
Avatar
How can I get to the Editors ForColor property to change the default text color? I see it is under the SyntaxEditor Properties, but it does not show up when typing into VB.NET 2005 editor.

Is there a way of doing this from the Syntax Language file?
I did try this but did not work.

<State Key="StringState" TokenKey="StringDefaultToken" Style="StringDefaultStyle">
            <!-- Scopes -->
            <Scopes>
                <Scope>
                    <ExplicitPatternGroup Type="StartScope" TokenKey="StringStartToken" Style="StringDelimiterStyle" PatternValue="{HexDigitMacro}" />
                    <RegexPatternGroup Type="EndScope" TokenKey="StringEndToken" Style="StringDelimiterStyle" PatternValue="{LineTerminatorMacro}" IsWhitespace="True" />
                </Scope>
            </Scopes>
    </State>
thanks
teamels

[Modified at 02/01/2007 04:23 PM]

Comments (2)

Posted 17 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
The editor default forecolor is the forecolor of the style named "DefaultStyle" in whatever
language is currently loaded. A "DefaultStyle" lexical style is always available
in a language in the LexicalStates collection.


Actipro Software Support

Posted 17 years ago by ernesto
Avatar
Excellent thanks

Here is the updated code for reference:

<Styles>
<Style Key="DefaultStyle" ForeColor="white" />
</Styles>

<!-- StringState-->
    <State Key="StringState" TokenKey="StringDefaultToken" Style="StringDefaultStyle">
            <!-- Scopes -->
            <Scopes>
                <Scope>
                    <ExplicitPatternGroup Type="StartScope" TokenKey="StringStartToken" Style="StringDelimiterStyle" PatternValue="{HexDigitMacro}" />
                    <RegexPatternGroup Type="EndScope" TokenKey="StringEndToken" Style="DefaultStyle" PatternValue="{LineTerminatorMacro}" IsWhitespace="True" />
                </Scope>
            </Scopes>
    </State>
[Modified at 02/01/2007 06:46 PM]
The latest build of this product (v24.1.0) was released 2 months ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.