FeatureBuilder Class Reference
Last update: 16.07.2025A base class for all feature Builders. More...

Public Member Functions | |
| 'None' | ShowResult (self) |
| Updates the feature to reflect the result of an edit to the feature for all builders that support showing results. | |
Public Member Functions inherited from Builder | |
| 'None' | Commit (self) |
| Commits any edits that have been applied to the builder. | |
Static Public Attributes | |
| str | Feature = property(fget=__GetFeature) |
| Returns the feature being edited, or the created feature if the builder is being used in creation mode. | |
| str | FullName = property(fget=__GetFullName) |
| Gets the full name of the feature being edited. | |
| str | Name = property(fget=__GetName, fset=__SetName) |
| Gets or sets the name of the feature being edited. | |
| str | NameWithContext = property(fget=__GetNameWithContext) |
| Gets the name with context of the feature being edited. | |
| str | Status = property(fget=__GetStatus) |
| Returns the status of the feature being edited. | |
Properties | |
| thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') | |
Properties inherited from Builder | |
| thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') | |
Detailed Description
A base class for all feature Builders.
A Builder is an object that is used to create and edit Features.
This is an abstract class that provides the basic functionality common to all builders. See the Builder subclasses for details of application-specific builders.
This is an abstract class, and cannot be instantiated.
Member Data Documentation
◆ Feature
|
static |
Returns the feature being edited, or the created feature if the builder is being used in creation mode.
Returns the feature currently being edited by this builder.
If a new feature is being created, and the builder has not yet been commited, returns Null.
- Returns
- The feature being edited, or the created one or Null.
◆ FullName
|
static |
Gets the full name of the feature being edited.
Value type: String.
The default value is the current feature full name.
◆ Name
|
static |
Gets or sets the name of the feature being edited.
Value type: String.
The default value is the current feature name.
◆ NameWithContext
|
static |
Gets the name with context of the feature being edited.
Value type: String.
◆ Status
|
static |
Returns the status of the feature being edited.
Returns a value corresponding to the status of the feature being edited.
Value type: Integer.
The documentation for this class was generated from the following file:
- SpeosNX_2412.py
Public Member Functions inherited from