Class TSFBitMask

DescriptionHierarchyFieldsMethodsProperties

Unit

Declaration

type TSFBitMask = class(TX3DSingleField)

Description

SFBitMask VRML 1.0 field.

TSFBitMask is one of the exceptional field types that cannot be 100% correctly initialized by CreateUndefined, since EnumNames will be left undefined.

Hierarchy

Overview

Methods

Protected procedure SaveToStreamValue(Writer: TX3DWriter); override;
Public function FlagsCount: integer;
Public procedure ParseValue(Lexer: TX3DLexer; Reader: TX3DReader); override;
Public function AreAllFlags(value: boolean): boolean;
Public constructor Create(AParentNode: TX3DFileItem; const AName: string; const AFlagNames: array of string; const ANoneString, AAllString: string; const AFlags: array of boolean);
Public destructor Destroy; override;
Public function Equals(SecondValue: TX3DField; const EqualityEpsilon: Double): boolean; override;
Public procedure Assign(Source: TPersistent); override;
Public procedure AssignValue(Source: TX3DField); override;
Public class function TypeName: string; override;

Properties

Public property Flags[i:integer]: boolean read GetFlags write SetFlags;
Public property FlagNames[i:integer]: string read GetFlagNames;
Public property AllString: string read fAllString;
Public property NoneString: string read fNoneString;

Description

Methods

Protected procedure SaveToStreamValue(Writer: TX3DWriter); override;
 
Public function FlagsCount: integer;
 
Public procedure ParseValue(Lexer: TX3DLexer; Reader: TX3DReader); override;
 
Public function AreAllFlags(value: boolean): boolean;

Are all flag values set to True currently.

Public constructor Create(AParentNode: TX3DFileItem; const AName: string; const AFlagNames: array of string; const ANoneString, AAllString: string; const AFlags: array of boolean);

Constructor.

Remember that arrays AFlagNames and AFlags (AFlags is initial value of Flags) must have equal length. Eventually, AFlags may be longer (excessive items will be ignored).

Public destructor Destroy; override;
 
Public function Equals(SecondValue: TX3DField; const EqualityEpsilon: Double): boolean; override;
 
Public procedure Assign(Source: TPersistent); override;
 
Public procedure AssignValue(Source: TX3DField); override;
 
Public class function TypeName: string; override;
 

Properties

Public property Flags[i:integer]: boolean read GetFlags write SetFlags;

Value of this field. You can use Index from the range 0 .. FlagsCount - 1.

Public property FlagNames[i:integer]: string read GetFlagNames;
 
Public property AllString: string read fAllString;

Special strings that will be understood by parser as ALL or NONE bit values. AllString selects all flags, NoneString selects none. AllString may be '' is there's no such string, NoneString should never be '' (otherwise, user could not be able to specify some SFBitMask values — NoneString is the only way to specify 0).

There is usually little sense in using them like "ALL | something" (because it means just "ALL") or "NONE | something" (because it means just "something"). But it's allowed syntactically.

Public property NoneString: string read fNoneString;
 

Generated by PasDoc 0.13.0 on 2014-04-30 22:06:46