IXMLFlags Interface

Provides access to members that control XML flags.

Members

Name Description
Read-only property Count Number of flags.
Read-only property FlagName Flag name by index.
Read-only property FlagValue Indicates whether the flag has value by index.
Method GetFlag Indicates whether XML flag is set.
Method SetFlag Writes a flag value.

IXMLFlags.Count Property

Number of flags.

Public ReadOnly Property Count As Integer
public int Count {get;}

IXMLFlags.FlagName Property

Flag name by index.

Public Function get_FlagName ( _
    ByVal Index As Integer _
) As String
public string get_FlagName (
    int Index
);

IXMLFlags.FlagValue Property

Indicates whether the flag has value by index.

Public Function get_FlagValue ( _
    ByVal Index As Integer _
) As Boolean
public bool get_FlagValue (
    int Index
);

IXMLFlags.GetFlag Method

Indicates whether XML flag is set.

Public Function GetFlag ( _
    ByVal Name As String _
) As Boolean
public bool GetFlag (
    string Name
);

IXMLFlags.SetFlag Method

Writes a flag value.

Public Sub SetFlag ( _
    ByVal Name As String, _
    ByVal FlagValue As Boolean _
)
public void SetFlag (
    string Name,
    bool FlagValue
);

Classes that implement IXMLFlags

Classes Description
XMLFlags A collection of XML flags.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.